#[non_exhaustive]pub enum StartTimerError<T> {
Expired(T),
}Expand description
Add timer error
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Expired(T)
The timer is already expired
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for StartTimerError<T>where
T: Freeze,
impl<T> RefUnwindSafe for StartTimerError<T>where
T: RefUnwindSafe,
impl<T> Send for StartTimerError<T>where
T: Send,
impl<T> Sync for StartTimerError<T>where
T: Sync,
impl<T> Unpin for StartTimerError<T>where
T: Unpin,
impl<T> UnsafeUnpin for StartTimerError<T>where
T: UnsafeUnpin,
impl<T> UnwindSafe for StartTimerError<T>where
T: 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