[][src]Struct drone_cortex_m::map::reg::scb::Mmfar

pub struct Mmfar<_T: RegTag> {
    pub address: Address<_T>,
}

MemManage Fault Address Register.

Fields

address: Address<_T>

Data address for an MPU fault. This is the location addressed by an attempted load or store access that was faulted. The MemManage Status Register shows the cause of the fault, and whether MMFAR.ADDRESS is valid. When an unaligned access faults, the address is the actual address that faulted. Because an access might be split into multiple parts, each aligned, this address can be any offset in the range of the requested size.

Trait Implementations

impl<_T: Copy + RegTag> Copy for Reg<_T>[src]

impl<_T: Clone + RegTag> Clone for Reg<_T>[src]

impl<_T: RegTag> RReg<_T> for Reg<_T>[src]

impl<_T: RegTag> Reg<_T> for Reg<_T>[src]

type Val = Val

Opaque storage for register values. Read more

type UReg = Reg<Urt>

Corresponding unsynchronized register token.

type SReg = Reg<Srt>

Corresponding synchronized register token.

type CReg = Reg<Crt>

Corresponding copyable register token.

impl<_T: RegTag> Token for Reg<_T>[src]

impl<'a, _T> RegHold<'a, _T, Reg<_T>> for Hold<'a, _T> where
    _T: RegTag
[src]

impl<'a, _T> RegRef<'a, _T> for Reg<_T> where
    _T: RegTag + 'a, 
[src]

type Hold = Hold<'a, _T>

Exposed storage for register values. Read more

Auto Trait Implementations

impl<_T> Unpin for Reg<_T> where
    _T: Unpin

impl<_T> Send for Reg<_T>

impl<_T> Sync for Reg<_T>

Blanket Implementations

impl<T> From<T> for T[src]

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> Into<U> for T where
    U: From<T>, 
[src]

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.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.