pub struct Hip<'a> {
pub usage: u8,
pub selector: u8,
pub matching_type: u8,
pub certificate_association_data: Characters<'a>,
}Expand description
§Host identity protocol (HIP) Record
This record is used to associate a HIP public key with a domain name.
Fields§
§usage: u8The usage field is an 8-bit value that defines the semantics of the certificate association data field.
selector: u8The selector field is an 8-bit value that defines the type of data in the certificate association data field.
matching_type: u8The matching type field is an 8-bit value that defines the semantics of the certificate association data field.
certificate_association_data: Characters<'a>The certificate association data field is a variable-length string of octets that contains the certificate association data.
Trait Implementations§
impl<'a> Copy for Hip<'a>
impl<'a> StructuralPartialEq for Hip<'a>
Auto Trait Implementations§
impl<'a> Freeze for Hip<'a>
impl<'a> RefUnwindSafe for Hip<'a>
impl<'a> Send for Hip<'a>
impl<'a> Sync for Hip<'a>
impl<'a> Unpin for Hip<'a>
impl<'a> UnwindSafe for Hip<'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