pub struct Dlv<'a> {
pub key_tag: u16,
pub algorithm: u8,
pub digest_type: u8,
pub digest: Characters<'a>,
}Expand description
§DNSSEC lookaside validation record (DLV)
This record is used to publish the public key of a DNSSEC lookaside validation (DLV) trust anchor.
Fields§
§key_tag: u16key_tag is a mechanism for quickly identifying the signing key in a zone
algorithm: u8algorithm is the algorithm of the key
digest_type: u8digest_type is the algorithm used to construct the digest
digest: Characters<'a>digest is the digest of the public key
Trait Implementations§
impl<'a> Copy for Dlv<'a>
impl<'a> StructuralPartialEq for Dlv<'a>
Auto Trait Implementations§
impl<'a> Freeze for Dlv<'a>
impl<'a> RefUnwindSafe for Dlv<'a>
impl<'a> Send for Dlv<'a>
impl<'a> Sync for Dlv<'a>
impl<'a> Unpin for Dlv<'a>
impl<'a> UnwindSafe for Dlv<'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