#[repr(u16)]pub enum CommandStatus {
Init = 1,
Idle = 10,
Executing = 20,
Done = 100,
Error = 900,
}Expand description
Status of the command interface, written by the control program.
These values are written to command_status in CommandInterfaceView.
Variants§
Init = 1
Initial state before first scan.
Idle = 10
Ready to accept a new command.
Executing = 20
A command is currently being processed.
Done = 100
Command completed successfully. Result is available in command_result.
Error = 900
Command failed. The control program may place an error code in command_result.
Implementations§
Trait Implementations§
Source§impl Clone for CommandStatus
impl Clone for CommandStatus
Source§fn clone(&self) -> CommandStatus
fn clone(&self) -> CommandStatus
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 CommandStatus
impl Debug for CommandStatus
Source§impl PartialEq for CommandStatus
impl PartialEq for CommandStatus
impl Copy for CommandStatus
impl Eq for CommandStatus
impl StructuralPartialEq for CommandStatus
Auto Trait Implementations§
impl Freeze for CommandStatus
impl RefUnwindSafe for CommandStatus
impl Send for CommandStatus
impl Sync for CommandStatus
impl Unpin for CommandStatus
impl UnwindSafe for CommandStatus
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.