Struct StationScanInfo
#[repr(C)]pub struct StationScanInfo {
pub bssid: [c_char; 18],
pub essid: [c_char; 33],
pub signal: c_int,
pub frequency: c_int,
pub auth: Auth,
}Fields§
§bssid: [c_char; 18]BSSID, basic service set identifier.
essid: [c_char; 33]ESSID, extended service set identifier.
signal: c_intSignal strength. Unit: dBm.
frequency: c_intThe current operating frequency. Unit: Hz.
auth: AuthTrait Implementations§
§impl Clone for StationScanInfo
impl Clone for StationScanInfo
§fn clone(&self) -> StationScanInfo
fn clone(&self) -> StationScanInfo
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 moreimpl Copy for StationScanInfo
Auto Trait Implementations§
impl Freeze for StationScanInfo
impl RefUnwindSafe for StationScanInfo
impl Send for StationScanInfo
impl Sync for StationScanInfo
impl Unpin for StationScanInfo
impl UnwindSafe for StationScanInfo
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