#[repr(usize)]pub enum ContextVerb {
Stop = 1,
Unstop = 2,
Interrupt = 3,
ForceKill = 4_294_967_295,
}
Variants§
Implementations§
Source§impl ContextVerb
impl ContextVerb
pub fn try_from_raw(raw: usize) -> Option<Self>
Trait Implementations§
Source§impl Clone for ContextVerb
impl Clone for ContextVerb
Source§fn clone(&self) -> ContextVerb
fn clone(&self) -> ContextVerb
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 ContextVerb
impl Debug for ContextVerb
Source§impl PartialEq for ContextVerb
impl PartialEq for ContextVerb
impl Copy for ContextVerb
impl Eq for ContextVerb
impl StructuralPartialEq for ContextVerb
Auto Trait Implementations§
impl Freeze for ContextVerb
impl RefUnwindSafe for ContextVerb
impl Send for ContextVerb
impl Sync for ContextVerb
impl Unpin for ContextVerb
impl UnwindSafe for ContextVerb
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