pub enum PulseEngineAxisState {
Show 16 variants
Stopped = 0,
Ready = 1,
Running = 2,
Accelerating = 3,
Decelerating = 4,
HomingResetting = 8,
HomingBackingOff = 9,
Home = 10,
HomingStart = 11,
HomingSearch = 12,
HomingBack = 13,
Probed = 14,
ProbeStart = 15,
ProbeSearch = 16,
Error = 20,
Limit = 30,
}Expand description
Pulse engine axis state
Variants§
Stopped = 0
Ready = 1
Running = 2
Accelerating = 3
Decelerating = 4
HomingResetting = 8
HomingBackingOff = 9
Home = 10
HomingStart = 11
HomingSearch = 12
HomingBack = 13
Probed = 14
ProbeStart = 15
ProbeSearch = 16
Error = 20
Limit = 30
Trait Implementations§
Source§impl Clone for PulseEngineAxisState
impl Clone for PulseEngineAxisState
Source§fn clone(&self) -> PulseEngineAxisState
fn clone(&self) -> PulseEngineAxisState
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 PulseEngineAxisState
impl Debug for PulseEngineAxisState
Source§impl PartialEq for PulseEngineAxisState
impl PartialEq for PulseEngineAxisState
impl Copy for PulseEngineAxisState
impl Eq for PulseEngineAxisState
impl StructuralPartialEq for PulseEngineAxisState
Auto Trait Implementations§
impl Freeze for PulseEngineAxisState
impl RefUnwindSafe for PulseEngineAxisState
impl Send for PulseEngineAxisState
impl Sync for PulseEngineAxisState
impl Unpin for PulseEngineAxisState
impl UnwindSafe for PulseEngineAxisState
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.