[][src]Struct probe_rs::architecture::arm::m0::Demcr

pub struct Demcr(pub u32);

Implementations

impl Demcr[src]

pub fn dwtena(&self) -> bool[src]

Global enable for DWT

pub fn set_dwtena(&mut self, value: bool)[src]

Global enable for DWT

pub fn vc_harderr(&self) -> bool[src]

Enable halting debug trap on a HardFault exception

pub fn set_vc_harderr(&mut self, value: bool)[src]

Enable halting debug trap on a HardFault exception

pub fn vc_corereset(&self) -> bool[src]

Enable Reset Vector Catch

pub fn set_vc_corereset(&mut self, value: bool)[src]

Enable Reset Vector Catch

Trait Implementations

impl<T> BitRange<T> for Demcr where
    u32: BitRange<T>, 
[src]

impl Clone for Demcr[src]

impl Copy for Demcr[src]

impl Debug for Demcr[src]

impl From<Demcr> for u32[src]

impl From<u32> for Demcr[src]

Auto Trait Implementations

impl RefUnwindSafe for Demcr

impl Send for Demcr

impl Sync for Demcr

impl Unpin for Demcr

impl UnwindSafe for Demcr

Blanket Implementations

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

impl<T> Bit for T where
    T: BitRange<u8>, 
[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.