Struct iwlib_sys::wireless_config[][src]

#[repr(C)]pub struct wireless_config {
    pub name: [c_char; 17],
    pub has_nwid: c_int,
    pub nwid: iwparam,
    pub has_freq: c_int,
    pub freq: f64,
    pub freq_flags: c_int,
    pub has_key: c_int,
    pub key: [c_uchar; 64],
    pub key_size: c_int,
    pub key_flags: c_int,
    pub has_essid: c_int,
    pub essid_on: c_int,
    pub essid: [c_char; 34],
    pub essid_len: c_int,
    pub has_mode: c_int,
    pub mode: c_int,
}

Fields

name: [c_char; 17]has_nwid: c_intnwid: iwparamhas_freq: c_intfreq: f64freq_flags: c_inthas_key: c_intkey: [c_uchar; 64]key_size: c_intkey_flags: c_inthas_essid: c_intessid_on: c_intessid: [c_char; 34]essid_len: c_inthas_mode: c_intmode: c_int

Trait Implementations

impl Clone for wireless_config[src]

impl Copy for wireless_config[src]

impl Default for wireless_config[src]

Auto Trait Implementations

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.