pub struct Cert<'a> {
pub cert_type: u16,
pub key_tag: u16,
pub algorithm: u8,
pub certificate: Characters<'a>,
}Expand description
§Certificate record
This record lists the certificates used by the owner of the domain name to sign other records in the zone.
Fields§
§cert_type: u16The type of certificate.
key_tag: u16The key tag of the certificate.
algorithm: u8The algorithm used to sign the certificate.
certificate: Characters<'a>The certificate data.
Trait Implementations§
impl<'a> Copy for Cert<'a>
impl<'a> StructuralPartialEq for Cert<'a>
Auto Trait Implementations§
impl<'a> Freeze for Cert<'a>
impl<'a> RefUnwindSafe for Cert<'a>
impl<'a> Send for Cert<'a>
impl<'a> Sync for Cert<'a>
impl<'a> Unpin for Cert<'a>
impl<'a> UnwindSafe for Cert<'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