[][src]Enum avr_device::atmega1280::cpu::smcr::SM_A

#[repr(u8)]pub enum SM_A {
    IDLE,
    ADC,
    PDOWN,
    PSAVE,
    VAL_0X04,
    VAL_0X05,
    STDBY,
    ESTDBY,
}

Sleep Mode Select bits

Value on reset: 0

Variants

IDLE

0: Idle

ADC

1: ADC Noise Reduction (If Available)

PDOWN

2: Power Down

PSAVE

3: Power Save

VAL_0X04

4: Reserved

VAL_0X05

5: Reserved

STDBY

6: Standby

ESTDBY

7: Extended Standby

Trait Implementations

impl Clone for SM_A[src]

impl Copy for SM_A[src]

impl Debug for SM_A[src]

impl From<SM_A> for u8[src]

impl PartialEq<SM_A> for SM_A[src]

impl StructuralPartialEq for SM_A[src]

Auto Trait Implementations

impl Send for SM_A

impl Sync for SM_A

impl Unpin for SM_A

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, 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.