#[repr(u8)]pub enum KeypadLockout {
Nolockout = 0,
Lockout1 = 1,
Lockout2 = 2,
Lockout3 = 3,
Lockout4 = 4,
Lockout5 = 5,
}Variants§
Nolockout = 0
All functionality available to the user
Lockout1 = 1
Level 1 reduced functionality
Lockout2 = 2
Level 2 reduced functionality
Lockout3 = 3
Level 3 reduced functionality
Lockout4 = 4
Level 4 reduced functionality
Lockout5 = 5
Least functionality available to the user
Implementations§
Trait Implementations§
Source§impl Clone for KeypadLockout
impl Clone for KeypadLockout
Source§fn clone(&self) -> KeypadLockout
fn clone(&self) -> KeypadLockout
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 KeypadLockout
impl Debug for KeypadLockout
Source§impl<'de> Deserialize<'de> for KeypadLockout
impl<'de> Deserialize<'de> for KeypadLockout
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
Source§impl From<KeypadLockout> for u8
impl From<KeypadLockout> for u8
Source§fn from(val: KeypadLockout) -> Self
fn from(val: KeypadLockout) -> Self
Converts to this type from the input type.
Source§impl PartialEq for KeypadLockout
impl PartialEq for KeypadLockout
Source§impl Serialize for KeypadLockout
impl Serialize for KeypadLockout
impl Copy for KeypadLockout
impl Eq for KeypadLockout
impl StructuralPartialEq for KeypadLockout
Auto Trait Implementations§
impl Freeze for KeypadLockout
impl RefUnwindSafe for KeypadLockout
impl Send for KeypadLockout
impl Sync for KeypadLockout
impl Unpin for KeypadLockout
impl UnwindSafe for KeypadLockout
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