pub enum SchedulerStopReason {
Cancelled,
Shutdown,
Terminal,
ChannelClosed,
}Variants§
Trait Implementations§
Source§impl Clone for SchedulerStopReason
impl Clone for SchedulerStopReason
Source§fn clone(&self) -> SchedulerStopReason
fn clone(&self) -> SchedulerStopReason
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SchedulerStopReason
impl Debug for SchedulerStopReason
Source§impl PartialEq for SchedulerStopReason
impl PartialEq for SchedulerStopReason
Source§fn eq(&self, other: &SchedulerStopReason) -> bool
fn eq(&self, other: &SchedulerStopReason) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for SchedulerStopReason
impl Eq for SchedulerStopReason
impl StructuralPartialEq for SchedulerStopReason
Auto Trait Implementations§
impl Freeze for SchedulerStopReason
impl RefUnwindSafe for SchedulerStopReason
impl Send for SchedulerStopReason
impl Sync for SchedulerStopReason
impl Unpin for SchedulerStopReason
impl UnsafeUnpin for SchedulerStopReason
impl UnwindSafe for SchedulerStopReason
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