mirror of
https://github.com/bevyengine/bevy
synced 2024-11-22 12:43:34 +00:00
Derive debug for ManualEventIterator (#9293)
# Objective Fixes #9284 by deriving Debug on ManualEventIterator
This commit is contained in:
parent
370eed05e5
commit
e02938f9dd
1 changed files with 1 additions and 0 deletions
|
@ -425,6 +425,7 @@ impl<E: Event> ManualEventReader<E> {
|
|||
}
|
||||
|
||||
/// An iterator that yields any unread events from an [`EventReader`] or [`ManualEventReader`].
|
||||
#[derive(Debug)]
|
||||
pub struct ManualEventIterator<'a, E: Event> {
|
||||
iter: ManualEventIteratorWithId<'a, E>,
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue