#[repr(usize)]pub enum ContextStatus {
Runnable = 0,
Blocked = 1,
NotYetStarted = 2,
Dead = 3,
ForceKilled = 4,
Stopped = 5,
UnhandledExcp = 6,
Other = 7,
}
Variants§
Runnable = 0
Blocked = 1
NotYetStarted = 2
Dead = 3
ForceKilled = 4
Stopped = 5
UnhandledExcp = 6
Other = 7
Trait Implementations§
Source§impl Clone for ContextStatus
impl Clone for ContextStatus
Source§fn clone(&self) -> ContextStatus
fn clone(&self) -> ContextStatus
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 ContextStatus
impl Debug for ContextStatus
Source§impl Default for ContextStatus
impl Default for ContextStatus
Source§fn default() -> ContextStatus
fn default() -> ContextStatus
Returns the “default value” for a type. Read more
Source§impl PartialEq for ContextStatus
impl PartialEq for ContextStatus
impl Copy for ContextStatus
impl Eq for ContextStatus
impl StructuralPartialEq for ContextStatus
Auto Trait Implementations§
impl Freeze for ContextStatus
impl RefUnwindSafe for ContextStatus
impl Send for ContextStatus
impl Sync for ContextStatus
impl Unpin for ContextStatus
impl UnwindSafe for ContextStatus
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