#[repr(C)]pub struct iw_scan_req {
    pub scan_type: __u8,
    pub essid_len: __u8,
    pub num_channels: __u8,
    pub flags: __u8,
    pub bssid: sockaddr,
    pub essid: [__u8; 32],
    pub min_channel_time: __u32,
    pub max_channel_time: __u32,
    pub channel_list: [iw_freq; 32],
}Fields§
§scan_type: __u8§essid_len: __u8§num_channels: __u8§flags: __u8§bssid: sockaddr§essid: [__u8; 32]§min_channel_time: __u32§max_channel_time: __u32§channel_list: [iw_freq; 32]Trait Implementations§
Source§impl Clone for iw_scan_req
 
impl Clone for iw_scan_req
Source§fn clone(&self) -> iw_scan_req
 
fn clone(&self) -> iw_scan_req
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 iw_scan_req
Auto Trait Implementations§
impl Freeze for iw_scan_req
impl RefUnwindSafe for iw_scan_req
impl Send for iw_scan_req
impl Sync for iw_scan_req
impl Unpin for iw_scan_req
impl UnwindSafe for iw_scan_req
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