pub struct NSEC<'a> {
pub next_name: Name<'a>,
pub type_bit_maps: Vec<TypeBitMap<'a>>,
}
Expand description
A NSEC record see rfc4034
Fields§
§next_name: Name<'a>
The next owner name in the canonical ordering of the zone
type_bit_maps: Vec<TypeBitMap<'a>>
The type bit maps representing the RR types present at the NSEC RR’s owner name
Implementations§
Trait Implementations§
impl<'a> Eq 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