pub struct ChipId {
    pub device_class: DeviceClass,
    pub major: u8,
    pub minor: u8,
    pub pin_count: PinCount,
    pub temp_range: TempRange,
    pub package: Package,
    pub rohs_compliant: bool,
    pub qualification: Qualification,
    pub part_no: PartNo,
}
Expand description

These values describe the physical LM4F/TM4C chip

Fields

device_class: DeviceClass

The device class

major: u8

The major revision

minor: u8

The minor revision

pin_count: PinCount

The chip’s pin count

temp_range: TempRange

The chip’s temperature range

package: Package

The chip’s package

rohs_compliant: bool

True if the chip is RoHS compliant

qualification: Qualification

The chip’s qualification

part_no: PartNo

The chip’s part number

Trait Implementations

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.