pub struct IpSecKey<'a> {
pub precedence: u16,
pub gateway_type: u8,
pub algorithm: u8,
pub gateway: Characters<'a>,
pub public_key: Characters<'a>,
}Expand description
§IPsec key record
This record is used to store a public key that is associated with a domain name.
Fields§
§precedence: u16The precedence of the key.
gateway_type: u8The gateway type.
algorithm: u8The algorithm used for the key.
gateway: Characters<'a>The gateway data.
public_key: Characters<'a>The public key data.
Trait Implementations§
impl<'a> Copy for IpSecKey<'a>
impl<'a> StructuralPartialEq for IpSecKey<'a>
Auto Trait Implementations§
impl<'a> Freeze for IpSecKey<'a>
impl<'a> RefUnwindSafe for IpSecKey<'a>
impl<'a> Send for IpSecKey<'a>
impl<'a> Sync for IpSecKey<'a>
impl<'a> Unpin for IpSecKey<'a>
impl<'a> UnwindSafe for IpSecKey<'a>
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