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

pub struct CSW {
    pub DbgSwEnable: u8,
    pub PROT: u8,
    pub CACHE: u8,
    pub SPIDEN: u8,
    pub _RES0: u8,
    pub Type: u8,
    pub Mode: u8,
    pub TrinProg: u8,
    pub DeviceEn: u8,
    pub AddrInc: AddressIncrement,
    pub _RES1: u8,
    pub SIZE: DataSize,
}

Control and Status Word register

The control and status word register (CSW) is used to configure memory access through the memory AP.

Fields

DbgSwEnable: u8PROT: u8CACHE: u8SPIDEN: u8_RES0: u8Type: u8Mode: u8TrinProg: u8DeviceEn: u8AddrInc: AddressIncrement_RES1: u8SIZE: DataSize

Trait Implementations

impl APRegister<MemoryAP> for CSW[src]

impl Clone for CSW[src]

impl Copy for CSW[src]

impl Debug for CSW[src]

impl Default for CSW[src]

impl From<CSW> for u32[src]

impl From<u32> for CSW[src]

impl PartialEq<CSW> for CSW[src]

impl Register for CSW[src]

impl StructuralPartialEq for CSW[src]

Auto Trait Implementations

impl RefUnwindSafe for CSW

impl Send for CSW

impl Sync for CSW

impl Unpin for CSW

impl UnwindSafe for CSW

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.