[][src]Struct esp_idf_bindgen::wifi_scan_config_t

#[repr(C)]pub struct wifi_scan_config_t {
    pub ssid: *mut u8,
    pub bssid: *mut u8,
    pub channel: u8,
    pub show_hidden: bool,
    pub scan_type: wifi_scan_type_t,
    pub scan_time: wifi_scan_time_t,
}

@brief Parameters for an SSID scan.

Fields

ssid: *mut u8

< SSID of AP

bssid: *mut u8

< MAC address of AP

channel: u8

< channel, scan the specific channel

show_hidden: bool

< enable to scan AP whose SSID is hidden

scan_type: wifi_scan_type_t

< scan type, active or passive

scan_time: wifi_scan_time_t

< scan time per channel

Trait Implementations

impl Clone for wifi_scan_config_t[src]

impl Copy for wifi_scan_config_t[src]

impl Debug for wifi_scan_config_t[src]

Auto Trait Implementations

impl !Send for wifi_scan_config_t

impl !Sync for wifi_scan_config_t

impl Unpin for wifi_scan_config_t

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.