[][src]Enum esp_idf_bindgen::eSleepModeStatus

#[repr(u32)]pub enum eSleepModeStatus {
    eAbortSleep,
    eStandardSleep,
    eNoTasksWaitingTimeout,
}

Possible return values for eTaskConfirmSleepModeStatus().

Variants

eAbortSleep

< A task has been made ready or a context switch pended since portSUPPORESS_TICKS_AND_SLEEP() was called - abort entering a sleep mode.

eStandardSleep

< Enter a sleep mode that will not last any longer than the expected idle time.

eNoTasksWaitingTimeout

< No tasks are waiting for a timeout so it is safe to enter a sleep mode that can only be exited by an external interrupt.

Trait Implementations

impl Clone for eSleepModeStatus[src]

impl Copy for eSleepModeStatus[src]

impl Debug for eSleepModeStatus[src]

impl Eq for eSleepModeStatus[src]

impl Hash for eSleepModeStatus[src]

impl PartialEq<eSleepModeStatus> for eSleepModeStatus[src]

impl StructuralEq for eSleepModeStatus[src]

impl StructuralPartialEq for eSleepModeStatus[src]

Auto Trait Implementations

impl Send for eSleepModeStatus

impl Sync for eSleepModeStatus

impl Unpin for eSleepModeStatus

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.