pub enum LiftState {
Lowered,
Raised,
Moving,
Intermediate,
Error,
}Expand description
Lift position state.
Variants§
Lowered
Lift at bottom
Raised
Lift at top
Moving
Lift moving
Intermediate
Lift at custom position
Error
Lift error
Trait Implementations§
Source§impl<'de> Deserialize<'de> for LiftState
impl<'de> Deserialize<'de> for LiftState
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Copy for LiftState
impl Eq for LiftState
impl StructuralPartialEq for LiftState
Auto Trait Implementations§
impl Freeze for LiftState
impl RefUnwindSafe for LiftState
impl Send for LiftState
impl Sync for LiftState
impl Unpin for LiftState
impl UnwindSafe for LiftState
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,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.