pub struct Nsec3QueryInfo<'q> {
pub qname: &'q LowerName,
pub qtype: RecordType,
pub has_wildcard_match: bool,
pub algorithm: Nsec3HashAlgorithm,
pub salt: &'q [u8],
pub iterations: u16,
}Available on crate feature
__dnssec only.Expand description
Information required to compute the NSEC3 records that should be sent for a query.
Fields§
§qname: &'q LowerNameThe queried name.
qtype: RecordTypeThe queried record type.
has_wildcard_match: boolWhether there was a wildcard match for qname regardless of qtype.
algorithm: Nsec3HashAlgorithmThe algorithm used to hash the names.
salt: &'q [u8]The salt used for hashing.
iterations: u16The number of hashing iterations.
Auto Trait Implementations§
impl<'q> Freeze for Nsec3QueryInfo<'q>
impl<'q> RefUnwindSafe for Nsec3QueryInfo<'q>
impl<'q> Send for Nsec3QueryInfo<'q>
impl<'q> Sync for Nsec3QueryInfo<'q>
impl<'q> Unpin for Nsec3QueryInfo<'q>
impl<'q> UnwindSafe for Nsec3QueryInfo<'q>
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