pub struct BlocklistLookup(/* private fields */);Available on crate feature
blocklist only.Expand description
A lookup object that is returned when a blocklist entry is matched.
Trait Implementations§
Source§impl LookupObject for BlocklistLookup
impl LookupObject for BlocklistLookup
Source§fn is_empty(&self) -> bool
fn is_empty(&self) -> bool
Returns true if either the associated Records are empty, or this is a NameExists or NxDomain
Source§fn iter<'a>(&'a self) -> Box<dyn Iterator<Item = &'a Record> + Send + 'a>
fn iter<'a>(&'a self) -> Box<dyn Iterator<Item = &'a Record> + Send + 'a>
Conversion to an iterator
Source§fn take_additionals(&mut self) -> Option<Box<dyn LookupObject>>
fn take_additionals(&mut self) -> Option<Box<dyn LookupObject>>
For CNAME and similar records, this is an additional set of lookup records Read more
Source§fn dnssec_summary(&self) -> DnssecSummary
fn dnssec_summary(&self) -> DnssecSummary
Available on crate feature
__dnssec only.Whether the records have been DNSSEC validated or not
Auto Trait Implementations§
impl Freeze for BlocklistLookup
impl RefUnwindSafe for BlocklistLookup
impl Send for BlocklistLookup
impl Sync for BlocklistLookup
impl Unpin for BlocklistLookup
impl UnwindSafe for BlocklistLookup
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