[][src]Enum cortex_m::register::faultmask::Faultmask

pub enum Faultmask {
    Active,
    Inactive,
}

All exceptions are ...

Variants

Active

Active

Inactive

Inactive, expect for NMI

Implementations

impl Faultmask[src]

pub fn is_active(self) -> bool[src]

All exceptions are active

pub fn is_inactive(self) -> bool[src]

All exceptions, except for NMI, are inactive

Trait Implementations

impl Clone for Faultmask[src]

impl Copy for Faultmask[src]

impl Debug for Faultmask[src]

impl Eq for Faultmask[src]

impl PartialEq<Faultmask> for Faultmask[src]

impl StructuralEq for Faultmask[src]

impl StructuralPartialEq for Faultmask[src]

Auto Trait Implementations

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> Same<T> for T

type Output = T

Should always be Self

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.