[][src]Enum lpc82x_pac::pmu::pcon::PM_A

pub enum PM_A {
    DEFAULT,
    DEEP_SLEEP_MODE,
    POWER_DOWN_MODE,
    DEEP_POWER_DOWN_MODE,
}

Power mode

Value on reset: 0

Variants

DEFAULT

0: Default. The part is in active or sleep mode.

DEEP_SLEEP_MODE

1: Deep-sleep mode. ARM WFI will enter Deep-sleep mode.

POWER_DOWN_MODE

2: Power-down mode. ARM WFI will enter Power-down mode.

DEEP_POWER_DOWN_MODE

3: Deep power-down mode. ARM WFI will enter Deep-power down mode (ARM Cortex-M0+ core powered-down).

Trait Implementations

impl From<PM_A> for u8[src]

impl Debug for PM_A[src]

impl PartialEq<PM_A> for PM_A[src]

impl Copy for PM_A[src]

impl Clone for PM_A[src]

Auto Trait Implementations

impl Unpin for PM_A

impl Send for PM_A

impl Sync for PM_A

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

type Output = T

Should always be Self