Derive debug for ManualEventIterator (#9293)

# Objective
Fixes #9284 by deriving Debug on ManualEventIterator
This commit is contained in:
FlippinBerger 2023-07-30 09:30:52 -06:00 committed by GitHub
parent 370eed05e5
commit e02938f9dd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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>,
}