pub enum TimerCancelError {
NotWaiting,
}
Expand description
Errors that may be thrown by ThreadTimer::cancel()
Variants§
NotWaiting
The timer is not currently waiting, so there is nothing to cancel
Trait Implementations§
Source§impl Debug for TimerCancelError
impl Debug for TimerCancelError
Source§impl PartialEq for TimerCancelError
impl PartialEq for TimerCancelError
impl Eq for TimerCancelError
impl StructuralPartialEq for TimerCancelError
Auto Trait Implementations§
impl Freeze for TimerCancelError
impl RefUnwindSafe for TimerCancelError
impl Send for TimerCancelError
impl Sync for TimerCancelError
impl Unpin for TimerCancelError
impl UnwindSafe for TimerCancelError
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