pub struct EventQueue<E, const N: usize> { /* private fields */ }Expand description
Allocation-free FIFO used for deferred and explicitly processed events.
Implementations§
Source§impl<E, const N: usize> EventQueue<E, N>
impl<E, const N: usize> EventQueue<E, N>
Trait Implementations§
Auto Trait Implementations§
impl<E, const N: usize> Freeze for EventQueue<E, N>where
E: Freeze,
impl<E, const N: usize> RefUnwindSafe for EventQueue<E, N>where
E: RefUnwindSafe,
impl<E, const N: usize> Send for EventQueue<E, N>where
E: Send,
impl<E, const N: usize> Sync for EventQueue<E, N>where
E: Sync,
impl<E, const N: usize> Unpin for EventQueue<E, N>where
E: Unpin,
impl<E, const N: usize> UnsafeUnpin for EventQueue<E, N>where
E: UnsafeUnpin,
impl<E, const N: usize> UnwindSafe for EventQueue<E, N>where
E: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more