pub struct Raw {
pub reader: u8,
pub format_code: u8,
pub bit_count: u16,
pub bits: Vec<u8>,
}Expand description
osdp_RAW body.
Fields§
§reader: u8Reader number.
format_code: u8Format code (vendor-specific; see Annex F).
bit_count: u16Number of bits actually present in bits.
bits: Vec<u8>ceil(bit_count / 8) bytes; high-order bits first.
Implementations§
Trait Implementations§
impl Eq for Raw
impl StructuralPartialEq for Raw
Auto Trait Implementations§
impl Freeze for Raw
impl RefUnwindSafe for Raw
impl Send for Raw
impl Sync for Raw
impl Unpin for Raw
impl UnsafeUnpin for Raw
impl UnwindSafe for Raw
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