pub struct TimerHandle { /* private fields */ }
Expand description
A handle to a requested timer. Allows the timer to be cleared. The handle is safe to drop, in which case the original timer is no longer abortable
Implementations§
Source§impl TimerHandle
impl TimerHandle
Trait Implementations§
Source§impl Debug for TimerHandle
impl Debug for TimerHandle
Source§impl From<TimerHandle> for CompletedTimerHandle
impl From<TimerHandle> for CompletedTimerHandle
Source§fn from(value: TimerHandle) -> Self
fn from(value: TimerHandle) -> Self
Converts to this type from the input type.
Source§impl PartialEq<CompletedTimerHandle> for TimerHandle
impl PartialEq<CompletedTimerHandle> for TimerHandle
Source§impl PartialEq<TimerHandle> for CompletedTimerHandle
impl PartialEq<TimerHandle> for CompletedTimerHandle
Source§impl PartialEq for TimerHandle
impl PartialEq for TimerHandle
impl Eq for TimerHandle
Auto Trait Implementations§
impl Freeze for TimerHandle
impl !RefUnwindSafe for TimerHandle
impl Send for TimerHandle
impl Sync for TimerHandle
impl Unpin for TimerHandle
impl !UnwindSafe for TimerHandle
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