#[repr(C, packed(1))]pub struct StrAuth {
pub len: u16,
pub typ: SaExtType,
pub bits: u16,
pub reserved: u16,
pub data: [u8; 80],
}
Expand description
String authentication information for this security association.
Fields§
§len: u16
Length of this extension in 8-byte units.
typ: SaExtType
The type of this extension.
bits: u16
Length of the key in bits.
reserved: u16
Reserved.
data: [u8; 80]
Key data.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for StrAuth
impl RefUnwindSafe for StrAuth
impl Send for StrAuth
impl Sync for StrAuth
impl Unpin for StrAuth
impl UnwindSafe for StrAuth
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