Struct StaStatus
#[repr(C)]pub struct StaStatus {
pub status: StationStatus,
pub ifname: [c_char; 32],
pub ap_bssid: [c_char; 18],
pub rssi: c_int,
pub auth: Auth,
}Fields§
§status: StationStatusThe status of STA mode
ifname: [c_char; 32]Linux network interface name, such as wlan0, wlan1, etc
ap_bssid: [c_char; 18]BSSID, basic service set identifier
rssi: c_intThe signal strength when the STA device is connected to the hotspot. Unit: dBm. -9999 indicates the invalid value
auth: AuthWiFi encryption Auth
Auto Trait Implementations§
impl Freeze for StaStatus
impl RefUnwindSafe for StaStatus
impl Send for StaStatus
impl Sync for StaStatus
impl Unpin for StaStatus
impl UnwindSafe for StaStatus
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