pub enum PulseEngineState {
Show 15 variants
Stopped = 0,
Internal = 1,
Buffer = 2,
Running = 3,
Jogging = 10,
Stopping = 11,
Home = 20,
Homing = 21,
ProbeComplete = 30,
Probe = 31,
ProbeError = 32,
HybridProbeStopping = 40,
HybridProbeComplete = 41,
StopLimit = 100,
StopEmergency = 101,
}Expand description
Pulse engine state
Variants§
Stopped = 0
Internal = 1
Buffer = 2
Running = 3
Jogging = 10
Stopping = 11
Home = 20
Homing = 21
ProbeComplete = 30
Probe = 31
ProbeError = 32
HybridProbeStopping = 40
HybridProbeComplete = 41
StopLimit = 100
StopEmergency = 101
Trait Implementations§
Source§impl Clone for PulseEngineState
impl Clone for PulseEngineState
Source§fn clone(&self) -> PulseEngineState
fn clone(&self) -> PulseEngineState
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 PulseEngineState
impl Debug for PulseEngineState
Source§impl PartialEq for PulseEngineState
impl PartialEq for PulseEngineState
impl Copy for PulseEngineState
impl Eq for PulseEngineState
impl StructuralPartialEq for PulseEngineState
Auto Trait Implementations§
impl Freeze for PulseEngineState
impl RefUnwindSafe for PulseEngineState
impl Send for PulseEngineState
impl Sync for PulseEngineState
impl Unpin for PulseEngineState
impl UnwindSafe for PulseEngineState
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.