pub enum TimerTaskStatus {
Completed,
Terminate,
RetryAfter(Duration),
}Expand description
Enum representing the status of a timer task
Variants§
Trait Implementations§
Source§impl Debug for TimerTaskStatus
impl Debug for TimerTaskStatus
Source§impl PartialEq for TimerTaskStatus
impl PartialEq for TimerTaskStatus
Source§fn eq(&self, other: &TimerTaskStatus) -> bool
fn eq(&self, other: &TimerTaskStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TimerTaskStatus
Auto Trait Implementations§
impl Freeze for TimerTaskStatus
impl RefUnwindSafe for TimerTaskStatus
impl Send for TimerTaskStatus
impl Sync for TimerTaskStatus
impl Unpin for TimerTaskStatus
impl UnsafeUnpin for TimerTaskStatus
impl UnwindSafe for TimerTaskStatus
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