pub struct WifiEncryption {
pub encryption: u8,
pub key: String,
pub key_index: u8,
pub eap_options: u8,
pub ca_certificate_length: u16,
pub client_certificate_length: u16,
pub private_key_length: u16,
}
Fields§
§encryption: u8
§key: String
§key_index: u8
§eap_options: u8
§ca_certificate_length: u16
§client_certificate_length: u16
§private_key_length: u16
Trait Implementations§
Source§impl Clone for WifiEncryption
impl Clone for WifiEncryption
Source§fn clone(&self) -> WifiEncryption
fn clone(&self) -> WifiEncryption
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 moreSource§impl FromByteSlice for WifiEncryption
impl FromByteSlice for WifiEncryption
Source§fn bytes_expected() -> usize
fn bytes_expected() -> usize
Returns how many bytes are expected to deserialize a instance of the implementing type. Currently this method is only used for strings.
Source§fn from_le_byte_slice(bytes: &[u8]) -> WifiEncryption
fn from_le_byte_slice(bytes: &[u8]) -> WifiEncryption
Deserialize the implementing type from a byte slice.
Auto Trait Implementations§
impl Freeze for WifiEncryption
impl RefUnwindSafe for WifiEncryption
impl Send for WifiEncryption
impl Sync for WifiEncryption
impl Unpin for WifiEncryption
impl UnwindSafe for WifiEncryption
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