[][src]Struct probe_rs::coresight::access_ports::memory_ap::MBT

pub struct MBT {
    pub data: u32,
}

Memory Barrier Transfer register

The memory barrier transfer register (MBT) can be written to generate a barrier operation on the bus connected to the AP.

Writes to this register only have an effect if the Barrier Operations Extension is implemented by the AP.

Fields

data: u32

Trait Implementations

impl APRegister<MemoryAP> for MBT[src]

impl Clone for MBT[src]

impl Copy for MBT[src]

impl Debug for MBT[src]

impl Default for MBT[src]

impl From<MBT> for u32[src]

impl From<u32> for MBT[src]

impl PartialEq<MBT> for MBT[src]

impl Register for MBT[src]

impl StructuralPartialEq for MBT[src]

Auto Trait Implementations

impl RefUnwindSafe for MBT

impl Send for MBT

impl Sync for MBT

impl Unpin for MBT

impl UnwindSafe for MBT

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> DynClone for T where
    T: Clone
[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.