#[repr(u32)]pub enum ApexProcessState {
Dormant = 0,
Ready = 1,
Running = 2,
Waiting = 3,
Faulted = 4,
}Variants§
Trait Implementations§
Source§impl Clone for ApexProcessState
impl Clone for ApexProcessState
Source§fn clone(&self) -> ApexProcessState
fn clone(&self) -> ApexProcessState
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 ApexProcessState
impl Debug for ApexProcessState
Source§impl Default for ApexProcessState
impl Default for ApexProcessState
Source§fn default() -> ApexProcessState
fn default() -> ApexProcessState
Returns the “default value” for a type. Read more
Source§impl PartialEq for ApexProcessState
impl PartialEq for ApexProcessState
impl Copy for ApexProcessState
impl Eq for ApexProcessState
impl StructuralPartialEq for ApexProcessState
Auto Trait Implementations§
impl Freeze for ApexProcessState
impl RefUnwindSafe for ApexProcessState
impl Send for ApexProcessState
impl Sync for ApexProcessState
impl Unpin for ApexProcessState
impl UnwindSafe for ApexProcessState
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