Struct iw_scan_req
#[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: __u8essid_len: __u8num_channels: __u8flags: __u8bssid: sockaddressid: [__u8; 32]min_channel_time: __u32max_channel_time: __u32channel_list: [iw_freq; 32]
Trait Implementations
impl Clone for iw_scan_req
fn clone(&self) -> iw_scan_req
impl Copy for iw_scan_req
impl Debug for iw_scan_req
fn fmt(&self, f: &mut Formatter<'_>) -> Result
impl Eq for iw_scan_req
impl Hash for iw_scan_req
fn hash<__H: Hasher>(&self, state: &mut __H)
impl PartialEq for iw_scan_req
fn eq(&self, other: &iw_scan_req) -> bool
impl StructuralPartialEq 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 UnsafeUnpin for iw_scan_req
impl UnwindSafe for iw_scan_req
Blanket Implementations
impl<T> Any for iw_scan_req
where
T: 'static + ?Sized,
fn type_id(&self) -> TypeId
impl<T> Borrow<T> for iw_scan_req
where
T: ?Sized,
fn borrow(&self) -> &T
impl<T> BorrowMut<T> for iw_scan_req
where
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
impl<T> CloneToUninit for iw_scan_req
where
T: Clone,
unsafe fn clone_to_uninit(&self, dest: *mut u8)
impl<T> From<T> for iw_scan_req
fn from(t: T) -> TReturns the argument unchanged.
impl<T, U> Into<U> for iw_scan_req
where
U: From<T>,
fn into(self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom<U> for iw_scan_req
where
U: Into<T>,
type Error = never;fn try_from(value: U) -> Result<T, never>
impl<T, U> TryInto<U> for iw_scan_req
where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error;fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>