pub struct RRSig<'a> {
pub type_covered: u16,
pub algorithm: u8,
pub original_ttl: u32,
pub signature_expiration: u32,
pub signature_inception: u32,
pub key_tag: u16,
pub signer_name: DnsName<'a>,
pub signature: Characters<'a>,
}Expand description
§DNSSEC signature record
This record is used to sign other records. It is used in conjunction with the DnsKey record to verify the authenticity of a record.
Fields§
§type_covered: u16The type of record that is covered by this signature.
algorithm: u8The algorithm used to create the signature.
original_ttl: u32The number of seconds the signature is valid for.
signature_expiration: u32The time at which the signature was created.
signature_inception: u32The time at which the signature was last refreshed.
key_tag: u16The key tag of the key that was used to create the signature.
signer_name: DnsName<'a>The name of the zone that this signature was created for.
signature: Characters<'a>The signature.
Trait Implementations§
impl<'a> Copy for RRSig<'a>
impl<'a> StructuralPartialEq for RRSig<'a>
Auto Trait Implementations§
impl<'a> Freeze for RRSig<'a>
impl<'a> RefUnwindSafe for RRSig<'a>
impl<'a> Send for RRSig<'a>
impl<'a> Sync for RRSig<'a>
impl<'a> Unpin for RRSig<'a>
impl<'a> UnwindSafe for RRSig<'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