#[repr(i32)]pub enum ExecRunState {
Running = 1,
Paused = 2,
Stopped = 3,
}Expand description
Execution running states (ExecRunState_*).
Variants§
Running = 1
Execution is currently running (ExecRunState_Running = 1).
Paused = 2
Execution is paused (ExecRunState_Paused = 2).
Stopped = 3
Execution is stopped (ExecRunState_Stopped = 3).
Trait Implementations§
Source§impl Clone for ExecRunState
impl Clone for ExecRunState
Source§fn clone(&self) -> ExecRunState
fn clone(&self) -> ExecRunState
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 ExecRunState
Source§impl Debug for ExecRunState
impl Debug for ExecRunState
impl Eq for ExecRunState
Source§impl Hash for ExecRunState
impl Hash for ExecRunState
Source§impl PartialEq for ExecRunState
impl PartialEq for ExecRunState
impl StructuralPartialEq for ExecRunState
Auto Trait Implementations§
impl Freeze for ExecRunState
impl RefUnwindSafe for ExecRunState
impl Send for ExecRunState
impl Sync for ExecRunState
impl Unpin for ExecRunState
impl UnsafeUnpin for ExecRunState
impl UnwindSafe for ExecRunState
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