#[non_exhaustive]pub struct WifiSecuritySummary {
pub key_mgmt: WifiKeyMgmt,
pub has_psk_field: bool,
pub psk_agent_owned: bool,
pub eap_methods: Vec<String>,
}Expand description
Non-secret Wi-Fi security hints for UI / filtering.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.key_mgmt: WifiKeyMgmtDerived key management style.
has_psk_field: boolpsk key exists in non-secret settings.
psk_agent_owned: boolpsk-flags has VpnSecretFlags::AGENT_OWNED.
eap_methods: Vec<String>EAP method names from 802-1x.eap.
Trait Implementations§
Source§impl Clone for WifiSecuritySummary
impl Clone for WifiSecuritySummary
Source§fn clone(&self) -> WifiSecuritySummary
fn clone(&self) -> WifiSecuritySummary
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for WifiSecuritySummary
impl Debug for WifiSecuritySummary
Source§impl PartialEq for WifiSecuritySummary
impl PartialEq for WifiSecuritySummary
Source§fn eq(&self, other: &WifiSecuritySummary) -> bool
fn eq(&self, other: &WifiSecuritySummary) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for WifiSecuritySummary
impl StructuralPartialEq for WifiSecuritySummary
Auto Trait Implementations§
impl Freeze for WifiSecuritySummary
impl RefUnwindSafe for WifiSecuritySummary
impl Send for WifiSecuritySummary
impl Sync for WifiSecuritySummary
impl Unpin for WifiSecuritySummary
impl UnsafeUnpin for WifiSecuritySummary
impl UnwindSafe for WifiSecuritySummary
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