pub struct Keypad {
pub reader: u8,
pub digit_count: u8,
pub digits: Vec<u8>,
}Expand description
osdp_KEYPAD body.
Fields§
§reader: u8Reader number.
digit_count: u8Number of digits in digits.
digits: Vec<u8>Digits (ASCII; 0x7F = clear, 0x0D = enter).
Implementations§
Trait Implementations§
impl Eq for Keypad
impl StructuralPartialEq for Keypad
Auto Trait Implementations§
impl Freeze for Keypad
impl RefUnwindSafe for Keypad
impl Send for Keypad
impl Sync for Keypad
impl Unpin for Keypad
impl UnsafeUnpin for Keypad
impl UnwindSafe for Keypad
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