pub struct WifiSettings {
pub band: Band,
pub channel: u32,
pub cloned_mac_address: String,
pub mode: Mode,
pub mtu: u32,
pub powersave: u32,
pub rate: u32,
pub ssid: Vec<u8>,
pub security_settings: WifiSecuritySettings,
}
Fields§
§band: Band
§channel: u32
§cloned_mac_address: String
§mode: Mode
§mtu: u32
§powersave: u32
§rate: u32
§ssid: Vec<u8>
§security_settings: WifiSecuritySettings
Trait Implementations§
Source§impl Clone for WifiSettings
impl Clone for WifiSettings
Source§fn clone(&self) -> WifiSettings
fn clone(&self) -> WifiSettings
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 WifiSettings
impl Debug for WifiSettings
Source§impl PropMapConvert for WifiSettings
impl PropMapConvert for WifiSettings
fn from_propmap(map: PropMap) -> Self
fn to_propmap(&self, map: &mut PropMap)
Auto Trait Implementations§
impl Freeze for WifiSettings
impl RefUnwindSafe for WifiSettings
impl Send for WifiSettings
impl Sync for WifiSettings
impl Unpin for WifiSettings
impl UnwindSafe for WifiSettings
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