pub enum MovementStatus {
Stopped,
Opening,
Closing,
Unknown(u8),
}Expand description
MovementStatus (enum8).
Variants§
Stopped
Stopped = 0.
Opening
Opening = 1.
Closing
Closing = 2.
Unknown(u8)
A value not known to this codegen revision.
Implementations§
Trait Implementations§
Source§impl Clone for MovementStatus
impl Clone for MovementStatus
Source§fn clone(&self) -> MovementStatus
fn clone(&self) -> MovementStatus
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 MovementStatus
Source§impl Debug for MovementStatus
impl Debug for MovementStatus
impl Eq for MovementStatus
Source§impl PartialEq for MovementStatus
impl PartialEq for MovementStatus
impl StructuralPartialEq for MovementStatus
Auto Trait Implementations§
impl Freeze for MovementStatus
impl RefUnwindSafe for MovementStatus
impl Send for MovementStatus
impl Sync for MovementStatus
impl Unpin for MovementStatus
impl UnsafeUnpin for MovementStatus
impl UnwindSafe for MovementStatus
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