pub struct DNSSECProof {
pub name: Name,
pub proof: Vec<u8>,
}Expand description
A message which is sent in response to DNSSECQuery containing a DNSSEC proof.
Fields§
§name: NameThe name which the query was for. The proof may not contain a DNS RR for exactly this name if it contains a wildcard RR which contains this name instead.
proof: Vec<u8>An RFC 9102 DNSSEC AuthenticationChain providing a DNSSEC proof.
Trait Implementations§
Source§impl Clone for DNSSECProof
impl Clone for DNSSECProof
Source§fn clone(&self) -> DNSSECProof
fn clone(&self) -> DNSSECProof
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DNSSECProof
impl Debug for DNSSECProof
Source§impl Hash for DNSSECProof
impl Hash for DNSSECProof
Source§impl PartialEq for DNSSECProof
impl PartialEq for DNSSECProof
impl Eq for DNSSECProof
impl StructuralPartialEq for DNSSECProof
Auto Trait Implementations§
impl Freeze for DNSSECProof
impl RefUnwindSafe for DNSSECProof
impl Send for DNSSECProof
impl Sync for DNSSECProof
impl Unpin for DNSSECProof
impl UnwindSafe for DNSSECProof
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