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