#[repr(i32)]pub enum ExecTermState {
Normal = 1,
Terminating = 2,
TerminatingInteractive = 3,
Aborting = 4,
KillingThreads = 5,
}Expand description
Execution termination states (ExecTermState_*).
Variants§
Normal = 1
Normal execution state (ExecTermState_Normal = 1).
Terminating = 2
Execution is terminating (ExecTermState_Terminating = 2).
TerminatingInteractive = 3
Interactive termination (ExecTermState_TerminatingInteractive = 3).
Aborting = 4
Execution is aborting (ExecTermState_Aborting = 4).
KillingThreads = 5
Killing execution threads (ExecTermState_KillingThreads = 5).
Trait Implementations§
Source§impl Clone for ExecTermState
impl Clone for ExecTermState
Source§fn clone(&self) -> ExecTermState
fn clone(&self) -> ExecTermState
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 moreimpl Copy for ExecTermState
Source§impl Debug for ExecTermState
impl Debug for ExecTermState
impl Eq for ExecTermState
Source§impl Hash for ExecTermState
impl Hash for ExecTermState
Source§impl PartialEq for ExecTermState
impl PartialEq for ExecTermState
impl StructuralPartialEq for ExecTermState
Auto Trait Implementations§
impl Freeze for ExecTermState
impl RefUnwindSafe for ExecTermState
impl Send for ExecTermState
impl Sync for ExecTermState
impl Unpin for ExecTermState
impl UnsafeUnpin for ExecTermState
impl UnwindSafe for ExecTermState
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