pub enum WirelessBand {
Ghz2,
Ghz5,
}Expand description
Possible bands are 5GHz (for 5GHz 802.11a) and 2.4GHz (for 2.4GHz 802.11), do not restrict the 802.11 frequency band of the network if unset (the default).
Variants§
Trait Implementations§
Source§impl Clone for WirelessBand
impl Clone for WirelessBand
Source§fn clone(&self) -> WirelessBand
fn clone(&self) -> WirelessBand
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 WirelessBand
impl Debug for WirelessBand
Source§impl<'de> Deserialize<'de> for WirelessBand
impl<'de> Deserialize<'de> for WirelessBand
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for WirelessBand
impl PartialEq for WirelessBand
Source§impl Serialize for WirelessBand
impl Serialize for WirelessBand
impl Eq for WirelessBand
impl StructuralPartialEq for WirelessBand
Auto Trait Implementations§
impl Freeze for WirelessBand
impl RefUnwindSafe for WirelessBand
impl Send for WirelessBand
impl Sync for WirelessBand
impl Unpin for WirelessBand
impl UnwindSafe for WirelessBand
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