[][src]Enum esp_idf_bindgen::nvs_type_t

#[repr(u32)]pub enum nvs_type_t {
    NVS_TYPE_U8,
    NVS_TYPE_I8,
    NVS_TYPE_U16,
    NVS_TYPE_I16,
    NVS_TYPE_U32,
    NVS_TYPE_I32,
    NVS_TYPE_U64,
    NVS_TYPE_I64,
    NVS_TYPE_STR,
    NVS_TYPE_BLOB,
    NVS_TYPE_ANY,
}

@brief Types of variables

Variants

NVS_TYPE_U8

< Type uint8_t

NVS_TYPE_I8

< Type int8_t

NVS_TYPE_U16

< Type uint16_t

NVS_TYPE_I16

< Type int16_t

NVS_TYPE_U32

< Type uint32_t

NVS_TYPE_I32

< Type int32_t

NVS_TYPE_U64

< Type uint64_t

NVS_TYPE_I64

< Type int64_t

NVS_TYPE_STR

< Type string

NVS_TYPE_BLOB

< Type blob

NVS_TYPE_ANY

< Must be last

Trait Implementations

impl Clone for nvs_type_t[src]

impl Copy for nvs_type_t[src]

impl Debug for nvs_type_t[src]

impl Eq for nvs_type_t[src]

impl Hash for nvs_type_t[src]

impl PartialEq<nvs_type_t> for nvs_type_t[src]

impl StructuralEq for nvs_type_t[src]

impl StructuralPartialEq for nvs_type_t[src]

Auto Trait Implementations

impl Send for nvs_type_t

impl Sync for nvs_type_t

impl Unpin for nvs_type_t

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.