[][src]Enum esp_idf_bindgen::eNotifyAction

#[repr(u32)]pub enum eNotifyAction {
    eNoAction,
    eSetBits,
    eIncrement,
    eSetValueWithOverwrite,
    eSetValueWithoutOverwrite,
}

Actions that can be performed when vTaskNotify() is called.

Variants

eNoAction

< Notify the task without updating its notify value.

eSetBits

< Set bits in the task's notification value.

eIncrement

< Increment the task's notification value.

eSetValueWithOverwrite

< Set the task's notification value to a specific value even if the previous value has not yet been read by the task.

eSetValueWithoutOverwrite

< Set the task's notification value if the previous value has been read by the task.

Trait Implementations

impl Clone for eNotifyAction[src]

impl Copy for eNotifyAction[src]

impl Debug for eNotifyAction[src]

impl Eq for eNotifyAction[src]

impl Hash for eNotifyAction[src]

impl PartialEq<eNotifyAction> for eNotifyAction[src]

impl StructuralEq for eNotifyAction[src]

impl StructuralPartialEq for eNotifyAction[src]

Auto Trait Implementations

impl Send for eNotifyAction

impl Sync for eNotifyAction

impl Unpin for eNotifyAction

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.