pub enum SchedulerStatus {
Active,
Parked,
ParkedTimeout,
}Expand description
Scheduler Status
Variants§
Active
Currently executing an entry
Parked
Waiting for new entries to be scheduled
ParkedTimeout
Waiting to execute entries in the queue at the scheduled intervals
Trait Implementations§
Source§impl Clone for SchedulerStatus
impl Clone for SchedulerStatus
Source§fn clone(&self) -> SchedulerStatus
fn clone(&self) -> SchedulerStatus
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SchedulerStatus
impl Debug for SchedulerStatus
Source§impl Hash for SchedulerStatus
impl Hash for SchedulerStatus
Source§impl Ord for SchedulerStatus
impl Ord for SchedulerStatus
Source§fn cmp(&self, other: &SchedulerStatus) -> Ordering
fn cmp(&self, other: &SchedulerStatus) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for SchedulerStatus
impl PartialEq for SchedulerStatus
Source§impl PartialOrd for SchedulerStatus
impl PartialOrd for SchedulerStatus
impl Copy for SchedulerStatus
impl Eq for SchedulerStatus
impl StructuralPartialEq for SchedulerStatus
Auto Trait Implementations§
impl Freeze for SchedulerStatus
impl RefUnwindSafe for SchedulerStatus
impl Send for SchedulerStatus
impl Sync for SchedulerStatus
impl Unpin for SchedulerStatus
impl UnwindSafe for SchedulerStatus
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