pub struct Ds<'a> {
pub key_tag: u16,
pub algorithm: u8,
pub digest_type: u8,
pub digest: Characters<'a>,
}Expand description
§Delegation signer record
This record is used to store a cryptographic hash of a DNSKEY record.
Fields§
§key_tag: u16The key tag of the DNSKEY record.
algorithm: u8The algorithm of the DNSKEY record.
digest_type: u8The digest type of the DNSKEY record.
digest: Characters<'a>The digest of the DNSKEY record.
Trait Implementations§
impl<'a> Copy for Ds<'a>
impl<'a> StructuralPartialEq for Ds<'a>
Auto Trait Implementations§
impl<'a> Freeze for Ds<'a>
impl<'a> RefUnwindSafe for Ds<'a>
impl<'a> Send for Ds<'a>
impl<'a> Sync for Ds<'a>
impl<'a> Unpin for Ds<'a>
impl<'a> UnwindSafe for Ds<'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