pub struct Cds<'a> {
pub key_tag: u16,
pub algorithm: u8,
pub digest_type: u8,
pub digest: Characters<'a>,
}Expand description
§Child Delegation Signer (CDS) Record
This record is used to publish the key tag, algorithm, and digest type used in the DS record of a child zone.
Fields§
§key_tag: u16The key tag of the key that is being published.
algorithm: u8The algorithm of the key that is being published.
digest_type: u8The digest type of the key that is being published.
digest: Characters<'a>The digest of the key that is being published.
Trait Implementations§
impl<'a> Copy for Cds<'a>
impl<'a> StructuralPartialEq for Cds<'a>
Auto Trait Implementations§
impl<'a> Freeze for Cds<'a>
impl<'a> RefUnwindSafe for Cds<'a>
impl<'a> Send for Cds<'a>
impl<'a> Sync for Cds<'a>
impl<'a> Unpin for Cds<'a>
impl<'a> UnwindSafe for Cds<'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