pub enum Record {
S0(String),
S1(Data<Address16>),
S2(Data<Address24>),
S3(Data<Address32>),
S5(Count16),
S6(Count24),
S7(Address32),
S8(Address24),
S9(Address16),
}Expand description
An SRecord
See Wikipedia for specific record usage information.
Variants§
S0(String)
Header
S1(Data<Address16>)
Data with 16-bit address
S2(Data<Address24>)
Data with 24-bit address
S3(Data<Address32>)
Data with 32-bit address
S5(Count16)
16-bit data record count
S6(Count24)
24-bit data record count
S7(Address32)
32-bit start address
S8(Address24)
24-bit start address
S9(Address16)
16-bit start address
Trait Implementations§
Source§impl Ord for Record
impl Ord for Record
Source§impl PartialOrd for Record
impl PartialOrd for Record
impl Eq for Record
impl StructuralPartialEq for Record
Auto Trait Implementations§
impl Freeze for Record
impl RefUnwindSafe for Record
impl Send for Record
impl Sync for Record
impl Unpin for Record
impl UnwindSafe for Record
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