pub enum ControllerQueueTimer<'a> {
Active(QueueTimer<'a>),
Inert,
}Expand description
Controller-local queue timer wrapper.
Variants§
Active(QueueTimer<'a>)
Queue timer delegated to an active generation.
Inert
Inert timer used while disabled/closing.
Implementations§
Source§impl ControllerQueueTimer<'_>
impl ControllerQueueTimer<'_>
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for ControllerQueueTimer<'a>
impl<'a> !RefUnwindSafe for ControllerQueueTimer<'a>
impl<'a> Send for ControllerQueueTimer<'a>
impl<'a> Sync for ControllerQueueTimer<'a>
impl<'a> Unpin for ControllerQueueTimer<'a>
impl<'a> UnsafeUnpin for ControllerQueueTimer<'a>
impl<'a> !UnwindSafe for ControllerQueueTimer<'a>
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