pub struct Radio {
pub frequency_ghz: f32,
pub channel: Option<u32>,
pub channel_width_mhz: Option<u32>,
pub wlan_standard: Option<String>,
pub tx_retries_pct: Option<f64>,
}Expand description
Radio on an access point.
Fields§
§frequency_ghz: f32§channel: Option<u32>§channel_width_mhz: Option<u32>§wlan_standard: Option<String>§tx_retries_pct: Option<f64>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Radio
impl<'de> Deserialize<'de> for Radio
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
Auto Trait Implementations§
impl Freeze for Radio
impl RefUnwindSafe for Radio
impl Send for Radio
impl Sync for Radio
impl Unpin for Radio
impl UnsafeUnpin for Radio
impl UnwindSafe for Radio
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