Struct StationScanInfo
#[repr(transparent)]pub struct StationScanInfo(StationScanInfo);Expand description
Access point scan information.
Tuple Fields§
§0: StationScanInfoImplementations§
§impl StationScanInfo
impl StationScanInfo
fn slice_from_sys_ref(scan_info: &[StationScanInfo]) -> &[Self]
pub fn bssid(&self) -> Result<&str, StringError>
pub fn bssid(&self) -> Result<&str, StringError>
Returns the BSSID of the access point.
pub fn set_bssid(&mut self, bssid: &str) -> Result<(), StringError>
pub fn set_bssid(&mut self, bssid: &str) -> Result<(), StringError>
Sets the BSSID of the access point.
pub fn essid(&self) -> Result<&str, StringError>
pub fn essid(&self) -> Result<&str, StringError>
Returns the ESSID of the access point.
pub fn set_essid(&mut self, essid: &str) -> Result<(), StringError>
pub fn set_essid(&mut self, essid: &str) -> Result<(), StringError>
Sets the ESSID of the access point.
pub fn set_signal(&mut self, signal: i32)
pub fn set_signal(&mut self, signal: i32)
Sets the signal strength of the access point.
pub fn set_frequency(&mut self, frequency: i32)
pub fn set_frequency(&mut self, frequency: i32)
Sets the frequency of the access point.
Trait Implementations§
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