pub struct ActiveScanTime {
pub min: u32,
pub max: u32,
}
Expand description
Range of active scan times per channel. docs
Fields§
§min: u32
Minimum active scan time per channel, units: millisecond. 0 means use built-ins.
max: u32
Maximum active scan time per channel, units: millisecond, values above 1500 ms may cause station to disconnect from AP and are not recommended.
Implementations§
Trait Implementations§
Source§impl Clone for ActiveScanTime
impl Clone for ActiveScanTime
Source§fn clone(&self) -> ActiveScanTime
fn clone(&self) -> ActiveScanTime
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 moreSource§impl Default for ActiveScanTime
impl Default for ActiveScanTime
Source§fn default() -> ActiveScanTime
fn default() -> ActiveScanTime
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ActiveScanTime
impl RefUnwindSafe for ActiveScanTime
impl Send for ActiveScanTime
impl Sync for ActiveScanTime
impl Unpin for ActiveScanTime
impl UnwindSafe for ActiveScanTime
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