pub struct DNSSECStatus {
pub signed: bool,
pub ds_records: Vec<String>,
pub key_tag: Option<u32>,
pub algorithm: Option<String>,
pub next_key_rollover: Option<String>,
pub last_key_rollover: Option<String>,
}Expand description
DNSSEC status information for a signed zone
Tracks DNSSEC signing status, DS records for parent zones, and key rotation timestamps.
This status is populated by the DNSZone controller after
successful zone signing.
Fields§
§signed: boolZone is signed with DNSSEC
ds_records: Vec<String>DS (Delegation Signer) records for parent zone delegation
These records must be published in the parent zone to complete the DNSSEC chain of trust.
Format: <zone> IN DS <keytag> <algorithm> <digesttype> <digest>
Example: ["example.com. IN DS 12345 13 2 ABC123..."]
key_tag: Option<u32>KSK key tag (numeric identifier)
Identifies the Key Signing Key used to sign the DNSKEY RRset.
This value appears in the DS record.
algorithm: Option<String>DNSSEC algorithm name
Example: "ECDSAP256SHA256", "RSASHA256"
next_key_rollover: Option<String>Next scheduled key rollover timestamp (ISO 8601)
When the next automatic key rotation will occur.
Example: "2026-04-02T00:00:00Z"
last_key_rollover: Option<String>Last key rollover timestamp (ISO 8601)
When the most recent key rotation occurred.
Example: "2025-04-02T00:00:00Z"
Trait Implementations§
Source§impl Clone for DNSSECStatus
impl Clone for DNSSECStatus
Source§fn clone(&self) -> DNSSECStatus
fn clone(&self) -> DNSSECStatus
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for DNSSECStatus
impl Debug for DNSSECStatus
Source§impl<'de> Deserialize<'de> for DNSSECStatus
impl<'de> Deserialize<'de> for DNSSECStatus
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl JsonSchema for DNSSECStatus
impl JsonSchema for DNSSECStatus
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
$ref keyword. Read moreSource§impl PartialEq for DNSSECStatus
impl PartialEq for DNSSECStatus
Source§impl Serialize for DNSSECStatus
impl Serialize for DNSSECStatus
impl StructuralPartialEq for DNSSECStatus
Auto Trait Implementations§
impl Freeze for DNSSECStatus
impl RefUnwindSafe for DNSSECStatus
impl Send for DNSSECStatus
impl Sync for DNSSECStatus
impl Unpin for DNSSECStatus
impl UnwindSafe for DNSSECStatus
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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>
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>
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§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T in a tonic::Request§impl<L> LayerExt<L> for L
impl<L> LayerExt<L> for L
§fn named_layer<S>(&self, service: S) -> Layered<<L as Layer<S>>::Service, S>where
L: Layer<S>,
fn named_layer<S>(&self, service: S) -> Layered<<L as Layer<S>>::Service, S>where
L: Layer<S>,
Layered].