pub struct DnssecChecker { /* private fields */ }Expand description
Checks DNSSEC configuration for a domain.
Implementations§
Source§impl DnssecChecker
impl DnssecChecker
pub fn new() -> Self
Sourcepub fn with_rrsig_validation(self, on: bool) -> Self
pub fn with_rrsig_validation(self, on: bool) -> Self
Enables (or disables) the opt-in RRSIG validity check. When enabled,
check fetches RRSIG records for a signed zone and flags expired /
near-expiry signatures — the most common real-world DNSSEC outage that
the default digest-consistency check is blind to.
Sourcepub async fn check(&self, domain: &str) -> Result<DnssecReport>
pub async fn check(&self, domain: &str) -> Result<DnssecReport>
Generate a DNSSEC validation report for a domain.
Trait Implementations§
Auto Trait Implementations§
impl !RefUnwindSafe for DnssecChecker
impl !UnwindSafe for DnssecChecker
impl Freeze for DnssecChecker
impl Send for DnssecChecker
impl Sync for DnssecChecker
impl Unpin for DnssecChecker
impl UnsafeUnpin for DnssecChecker
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more