pub struct NsecTypeBitMap<'a> {
pub window_block: u8,
pub bitmap: Cow<'a, [u8]>,
}
Expand description
A Type bit map entry in a NSEC record see rfc4034
Fields§
§window_block: u8
The window block number of this bit map
bitmap: Cow<'a, [u8]>
The bitmap containing the RR types present in this window block
Trait Implementations§
Source§impl<'a> Clone for NsecTypeBitMap<'a>
impl<'a> Clone for NsecTypeBitMap<'a>
Source§fn clone(&self) -> NsecTypeBitMap<'a>
fn clone(&self) -> NsecTypeBitMap<'a>
Returns a copy 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<'a> Debug for NsecTypeBitMap<'a>
impl<'a> Debug for NsecTypeBitMap<'a>
Source§impl<'a> Hash for NsecTypeBitMap<'a>
impl<'a> Hash for NsecTypeBitMap<'a>
Source§impl<'a> PartialEq for NsecTypeBitMap<'a>
impl<'a> PartialEq for NsecTypeBitMap<'a>
impl<'a> Eq for NsecTypeBitMap<'a>
impl<'a> StructuralPartialEq for NsecTypeBitMap<'a>
Auto Trait Implementations§
impl<'a> Freeze for NsecTypeBitMap<'a>
impl<'a> RefUnwindSafe for NsecTypeBitMap<'a>
impl<'a> Send for NsecTypeBitMap<'a>
impl<'a> Sync for NsecTypeBitMap<'a>
impl<'a> Unpin for NsecTypeBitMap<'a>
impl<'a> UnwindSafe for NsecTypeBitMap<'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