pub struct Fmt {
pub reader: u8,
pub direction: u8,
pub char_count: u8,
pub chars: Vec<u8>,
}Expand description
osdp_FMT body.
Fields§
§reader: u8Reader number.
direction: u8Read direction (0 = forward, 1 = reverse).
char_count: u8Length of chars.
chars: Vec<u8>ASCII chars from the formatted card data.
Implementations§
Trait Implementations§
impl Eq for Fmt
impl StructuralPartialEq for Fmt
Auto Trait Implementations§
impl Freeze for Fmt
impl RefUnwindSafe for Fmt
impl Send for Fmt
impl Sync for Fmt
impl Unpin for Fmt
impl UnsafeUnpin for Fmt
impl UnwindSafe for Fmt
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