#[non_exhaustive]pub struct ScanOptions {
pub ssid: Option<String<32>>,
pub bssid: Option<[u8; 6]>,
pub nprobes: Option<u16>,
pub home_time: Option<Duration>,
pub scan_type: ScanType,
pub dwell_time: Option<Duration>,
}
Expand description
Scan options.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.ssid: Option<String<32>>
SSID to scan for.
bssid: Option<[u8; 6]>
If set to None
, all APs will be returned. If set to Some
, only APs
with the specified BSSID will be returned.
nprobes: Option<u16>
Number of probes to send on each channel.
home_time: Option<Duration>
Time to spend waiting on the home channel.
scan_type: ScanType
Scan type: active or passive.
dwell_time: Option<Duration>
Period of time to wait on each channel when passive scanning.
Trait Implementations§
Source§impl Clone for ScanOptions
impl Clone for ScanOptions
Source§fn clone(&self) -> ScanOptions
fn clone(&self) -> ScanOptions
Returns a copy 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 moreSource§impl Debug for ScanOptions
impl Debug for ScanOptions
Source§impl Default for ScanOptions
impl Default for ScanOptions
Auto Trait Implementations§
impl Freeze for ScanOptions
impl RefUnwindSafe for ScanOptions
impl Send for ScanOptions
impl Sync for ScanOptions
impl Unpin for ScanOptions
impl UnwindSafe for ScanOptions
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)