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§

source§

impl Debug for ChipId

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

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

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.