pub struct BlufiNetwork {
pub ssid: String,
pub rssi: Option<i64>,
}Expand description
One network seen by a BluFi target’s own WiFi scan (wifi_scan).
Fields§
§ssid: StringNetwork SSID.
rssi: Option<i64>Signal strength at the target (dBm).
Trait Implementations§
Source§impl Clone for BlufiNetwork
impl Clone for BlufiNetwork
Source§fn clone(&self) -> BlufiNetwork
fn clone(&self) -> BlufiNetwork
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 BlufiNetwork
impl Debug for BlufiNetwork
Source§impl<'de> Deserialize<'de> for BlufiNetwork
impl<'de> Deserialize<'de> for BlufiNetwork
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 BlufiNetwork
impl RefUnwindSafe for BlufiNetwork
impl Send for BlufiNetwork
impl Sync for BlufiNetwork
impl Unpin for BlufiNetwork
impl UnsafeUnpin for BlufiNetwork
impl UnwindSafe for BlufiNetwork
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