[][src]Enum srec::Record

pub enum Record {
    S0(String),
    S1(Data<Address16>),
    S2(Data<Address24>),
    S3(Data<Address32>),
    S5(Count16),
    S6(Count24),
    S7(Address32),
    S8(Address24),
    S9(Address16),
}

An SRecord

See Wikipedia for specific record usage information.

Variants

S0(String)

Header

Data with 16-bit address

Data with 24-bit address

Data with 32-bit address

16-bit data record count

24-bit data record count

32-bit start address

24-bit start address

16-bit start address

Trait Implementations

impl Clone for Record[src]

impl Debug for Record[src]

impl Eq for Record[src]

impl FromStr for Record[src]

type Err = Error

The associated error which can be returned from parsing.

impl Hash for Record[src]

impl Ord for Record[src]

impl PartialEq<Record> for Record[src]

impl PartialOrd<Record> for Record[src]

impl StructuralEq for Record[src]

impl StructuralPartialEq for Record[src]

Auto Trait Implementations

impl RefUnwindSafe for Record

impl Send for Record

impl Sync for Record

impl Unpin for Record

impl UnwindSafe for Record

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.