pub struct ZoneMd<'a> {
pub algorithm: u8,
pub digest_type: u8,
pub digest: Characters<'a>,
}Expand description
§Message digest for DNS zone record (ZONEMD)
This record is used to publish a message digest for a DNS zone.
Fields§
§algorithm: u8algorithm is the algorithm of the digest
digest_type: u8digest_type is the algorithm used to construct the digest
digest: Characters<'a>digest is the digest of the zone
Trait Implementations§
impl<'a> Copy for ZoneMd<'a>
impl<'a> StructuralPartialEq for ZoneMd<'a>
Auto Trait Implementations§
impl<'a> Freeze for ZoneMd<'a>
impl<'a> RefUnwindSafe for ZoneMd<'a>
impl<'a> Send for ZoneMd<'a>
impl<'a> Sync for ZoneMd<'a>
impl<'a> Unpin for ZoneMd<'a>
impl<'a> UnwindSafe for ZoneMd<'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