pub struct WifiSecuritySettings {Show 18 fields
pub authentication_algorithm: String,
pub group: Vec<String>,
pub key_management: String,
pub leap_password: String,
pub leap_password_flags: SecretSettingsFlag,
pub leap_username: String,
pub name: String,
pub pairwise: Vec<String>,
pub proto: Vec<String>,
pub psk: String,
pub psk_flags: SecretSettingsFlag,
pub wep_key_flags: SecretSettingsFlag,
pub wep_key_type: WEPKeyType,
pub wep_key0: String,
pub wep_key1: String,
pub wep_key2: String,
pub wep_key3: String,
pub wep_tx_keyidx: u32,
}
Fields§
§authentication_algorithm: String
§group: Vec<String>
§key_management: String
§leap_password: String
§leap_password_flags: SecretSettingsFlag
§leap_username: String
§name: String
§pairwise: Vec<String>
§proto: Vec<String>
§psk: String
§psk_flags: SecretSettingsFlag
§wep_key_flags: SecretSettingsFlag
§wep_key_type: WEPKeyType
§wep_key0: String
§wep_key1: String
§wep_key2: String
§wep_key3: String
§wep_tx_keyidx: u32
Trait Implementations§
Source§impl Clone for WifiSecuritySettings
impl Clone for WifiSecuritySettings
Source§fn clone(&self) -> WifiSecuritySettings
fn clone(&self) -> WifiSecuritySettings
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for WifiSecuritySettings
impl Debug for WifiSecuritySettings
Source§impl Default for WifiSecuritySettings
impl Default for WifiSecuritySettings
Source§fn default() -> WifiSecuritySettings
fn default() -> WifiSecuritySettings
Returns the “default value” for a type. Read more
Source§impl PropMapConvert for WifiSecuritySettings
impl PropMapConvert for WifiSecuritySettings
fn from_propmap(map: PropMap) -> Self
fn to_propmap(&self, map: &mut PropMap)
Auto Trait Implementations§
impl Freeze for WifiSecuritySettings
impl RefUnwindSafe for WifiSecuritySettings
impl Send for WifiSecuritySettings
impl Sync for WifiSecuritySettings
impl Unpin for WifiSecuritySettings
impl UnwindSafe for WifiSecuritySettings
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more