pub struct ValidatedDaneInput<'a> {
pub validated: &'a ValidatedTlsa,
pub certificate_chain_der: &'a [&'a [u8]],
pub origin_sni: &'a str,
pub validation_unix_time: i64,
pub limits: DaneLimits,
}Expand description
Inputs for engine-owned DNSSEC and DANE completion.
Fields§
§validated: &'a ValidatedTlsaNon-forgeable resolver result carrying HNS header-to-DNSSEC lineage.
certificate_chain_der: &'a [&'a [u8]]TLS server chain, leaf first.
origin_sni: &'a strExact SNI sent to the TLS origin.
validation_unix_time: i64Explicit certificate validation time for DANE-TA.
limits: DaneLimitsDANE resource bounds.
Trait Implementations§
Source§impl<'a> Clone for ValidatedDaneInput<'a>
impl<'a> Clone for ValidatedDaneInput<'a>
Source§fn clone(&self) -> ValidatedDaneInput<'a>
fn clone(&self) -> ValidatedDaneInput<'a>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl<'a> Copy for ValidatedDaneInput<'a>
Auto Trait Implementations§
impl<'a> Freeze for ValidatedDaneInput<'a>
impl<'a> RefUnwindSafe for ValidatedDaneInput<'a>
impl<'a> Send for ValidatedDaneInput<'a>
impl<'a> Sync for ValidatedDaneInput<'a>
impl<'a> Unpin for ValidatedDaneInput<'a>
impl<'a> UnsafeUnpin for ValidatedDaneInput<'a>
impl<'a> UnwindSafe for ValidatedDaneInput<'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