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

pub struct DRW {
    pub data: u32,
}

Data Read/Write register

The data read/write register (DRW) can be used to read or write from the memory attached to the memory access point.

A write to the DRW register is translated to a memory write to the address specified in the TAR register.

A read from the DRW register is translated to a memory read from the address specified in the TAR register.

Fields

data: u32

Trait Implementations

impl APRegister<MemoryAP> for DRW[src]

impl Clone for DRW[src]

impl Copy for DRW[src]

impl Debug for DRW[src]

impl Default for DRW[src]

impl From<DRW> for u32[src]

impl From<u32> for DRW[src]

impl PartialEq<DRW> for DRW[src]

impl Register for DRW[src]

impl StructuralPartialEq for DRW[src]

Auto Trait Implementations

impl RefUnwindSafe for DRW

impl Send for DRW

impl Sync for DRW

impl Unpin for DRW

impl UnwindSafe for DRW

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.