Struct esp_wifi_sys::include::esp_eap_fast_config
source · #[repr(C)]pub struct esp_eap_fast_config {
pub fast_provisioning: c_int,
pub fast_max_pac_list_len: c_int,
pub fast_pac_format_binary: bool,
}
Expand description
@brief Configuration settings for EAP-FAST (Extensible Authentication Protocol - Flexible Authentication via Secure Tunneling).
This structure defines the configuration options that can be used to customize the behavior of the EAP-FAST authentication protocol, specifically for Fast Provisioning and PAC (Protected Access Credential) handling.
Fields§
§fast_provisioning: c_int
< Enable or disable Fast Provisioning in EAP-FAST (0 = disabled, 1 = enabled)
fast_max_pac_list_len: c_int
< Maximum length of the PAC (Protected Access Credential) list
fast_pac_format_binary: bool
< Set to true for binary format PAC, false for ASCII format PAC
Trait Implementations§
source§impl Clone for esp_eap_fast_config
impl Clone for esp_eap_fast_config
source§fn clone(&self) -> esp_eap_fast_config
fn clone(&self) -> esp_eap_fast_config
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 moreimpl Copy for esp_eap_fast_config
Auto Trait Implementations§
impl Freeze for esp_eap_fast_config
impl RefUnwindSafe for esp_eap_fast_config
impl Send for esp_eap_fast_config
impl Sync for esp_eap_fast_config
impl Unpin for esp_eap_fast_config
impl UnwindSafe for esp_eap_fast_config
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
)