pub struct Nsec<'a> {
pub next_domain_name: DnsName<'a>,
pub type_bit_maps: Characters<'a>,
}Expand description
§Next secure record
This record is used to prove that a name does not exist in a zone.
Fields§
§next_domain_name: DnsName<'a>The next owner name in the canonical ordering of the zone.
type_bit_maps: Characters<'a>The set of RR types present at the NSEC RR’s owner name.
Trait Implementations§
impl<'a> Copy for Nsec<'a>
impl<'a> StructuralPartialEq for Nsec<'a>
Auto Trait Implementations§
impl<'a> Freeze for Nsec<'a>
impl<'a> RefUnwindSafe for Nsec<'a>
impl<'a> Send for Nsec<'a>
impl<'a> Sync for Nsec<'a>
impl<'a> Unpin for Nsec<'a>
impl<'a> UnwindSafe for Nsec<'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