[][src]Enum esp_idf_bindgen::wifi_cipher_type_t

#[repr(u32)]pub enum wifi_cipher_type_t {
    WIFI_CIPHER_TYPE_NONE,
    WIFI_CIPHER_TYPE_WEP40,
    WIFI_CIPHER_TYPE_WEP104,
    WIFI_CIPHER_TYPE_TKIP,
    WIFI_CIPHER_TYPE_CCMP,
    WIFI_CIPHER_TYPE_TKIP_CCMP,
    WIFI_CIPHER_TYPE_AES_CMAC128,
    WIFI_CIPHER_TYPE_UNKNOWN,
}

Variants

WIFI_CIPHER_TYPE_NONE

< the cipher type is none

WIFI_CIPHER_TYPE_WEP40

< the cipher type is WEP40

WIFI_CIPHER_TYPE_WEP104

< the cipher type is WEP104

WIFI_CIPHER_TYPE_TKIP

< the cipher type is TKIP

WIFI_CIPHER_TYPE_CCMP

< the cipher type is CCMP

WIFI_CIPHER_TYPE_TKIP_CCMP

< the cipher type is TKIP and CCMP

WIFI_CIPHER_TYPE_AES_CMAC128

< the cipher type is AES-CMAC-128

WIFI_CIPHER_TYPE_UNKNOWN

< the cipher type is unknown

Trait Implementations

impl Clone for wifi_cipher_type_t[src]

impl Copy for wifi_cipher_type_t[src]

impl Debug for wifi_cipher_type_t[src]

impl Eq for wifi_cipher_type_t[src]

impl Hash for wifi_cipher_type_t[src]

impl PartialEq<wifi_cipher_type_t> for wifi_cipher_type_t[src]

impl StructuralEq for wifi_cipher_type_t[src]

impl StructuralPartialEq for wifi_cipher_type_t[src]

Auto Trait Implementations

impl Send for wifi_cipher_type_t

impl Sync for wifi_cipher_type_t

impl Unpin for wifi_cipher_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.