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

pub struct TAR {
    pub address: u32,
}

Transfer Address Register

The transfer address register (TAR) holds the memory address which will be accessed through a read or write of the DRW register.

Fields

address: u32

Trait Implementations

impl APRegister<MemoryAP> for TAR[src]

impl Clone for TAR[src]

impl Copy for TAR[src]

impl Debug for TAR[src]

impl Default for TAR[src]

impl From<TAR> for u32[src]

impl From<u32> for TAR[src]

impl PartialEq<TAR> for TAR[src]

impl Register for TAR[src]

impl StructuralPartialEq for TAR[src]

Auto Trait Implementations

impl RefUnwindSafe for TAR

impl Send for TAR

impl Sync for TAR

impl Unpin for TAR

impl UnwindSafe for TAR

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.