pub struct DataField {
pub data: Vec<u8>,
pub checksum: u8,
/* private fields */
}Expand description
A 6 and 2 encoded data field that follows an address field in a nibblized image
Fields§
§data: Vec<u8>342 bytes of data, encoded as 6 and 2
checksum: u8The checksum of the data
Auto Trait Implementations§
impl Freeze for DataField
impl RefUnwindSafe for DataField
impl Send for DataField
impl Sync for DataField
impl Unpin for DataField
impl UnsafeUnpin for DataField
impl UnwindSafe for DataField
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