[][src]Struct probe_rs::coresight::memory::romtable::PeripheralID

pub struct PeripheralID {
    pub REVAND: u8,
    pub CMOD: ComponentModification,
    pub REVISION: u8,
    pub JEP106: Option<JEP106Code>,
    pub PART: u16,
    pub SIZE: u8,
}

Peripheral ID information for a CoreSight component.

Described in section D1.2.2 of the ADIv5.2 spec.

Fields

REVAND: u8

Indicates minor errata fixes by the component designer.

CMOD: ComponentModification

Indicates component modifications by the implementor.

REVISION: u8

Indicates major component revisions by the component designer.

JEP106: Option<JEP106Code>

Indicates the component designer.

None if it is a legacy component

PART: u16

Indicates the specific component with an ID unique to this component.

SIZE: u8

The SIZE is indicated as a multiple of 4k blocks the peripheral occupies.

Trait Implementations

impl Debug for PeripheralID[src]

impl PartialEq<PeripheralID> for PeripheralID[src]

impl StructuralPartialEq for PeripheralID[src]

Auto Trait Implementations

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, 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.