[][src]Struct probe_rs::architecture::arm::ap::IDR

pub struct IDR {
    pub REVISION: u8,
    pub DESIGNER: u16,
    pub CLASS: APClass,
    pub _RES0: u8,
    pub VARIANT: u8,
    pub TYPE: APType,
}

Identification Register

The identification register is used to identify an AP.

It has to be present on every AP.

Fields

REVISION: u8DESIGNER: u16CLASS: APClass_RES0: u8VARIANT: u8TYPE: APType

Trait Implementations

impl APRegister<GenericAP> for IDR[src]

impl Clone for IDR[src]

impl Copy for IDR[src]

impl Debug for IDR[src]

impl Default for IDR[src]

impl From<IDR> for u32[src]

impl From<u32> for IDR[src]

impl PartialEq<IDR> for IDR[src]

impl Register for IDR[src]

impl StructuralPartialEq for IDR[src]

Auto Trait Implementations

impl RefUnwindSafe for IDR

impl Send for IDR

impl Sync for IDR

impl Unpin for IDR

impl UnwindSafe for IDR

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.