pub struct DomainStatus {
pub txt_verified: bool,
pub cname_verified: bool,
}Expand description
Result of a domain verification check.
Returned by DomainVerifier::verify_domain. Both checks run
concurrently; a field is true only when the corresponding record was
found and matched exactly.
Fields§
§txt_verified: boolWhether the TXT record at {txt_prefix}.{domain} matched the
expected token.
cname_verified: boolWhether the CNAME record at domain pointed to the expected target.
Trait Implementations§
Source§impl Clone for DomainStatus
impl Clone for DomainStatus
Source§fn clone(&self) -> DomainStatus
fn clone(&self) -> DomainStatus
Returns a duplicate 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 Debug for DomainStatus
impl Debug for DomainStatus
Source§impl PartialEq for DomainStatus
impl PartialEq for DomainStatus
impl Copy for DomainStatus
impl Eq for DomainStatus
impl StructuralPartialEq for DomainStatus
Auto Trait Implementations§
impl Freeze for DomainStatus
impl RefUnwindSafe for DomainStatus
impl Send for DomainStatus
impl Sync for DomainStatus
impl Unpin for DomainStatus
impl UnsafeUnpin for DomainStatus
impl UnwindSafe for DomainStatus
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.