pub struct DomainCheck {
pub exists: bool,
pub verified: bool,
pub status: Option<String>,
pub domain: String,
pub id: Option<String>,
}Expand description
Result of a domain existence check.
Fields§
§exists: boolWhether the domain exists in your account.
verified: boolWhether it is verified.
status: Option<String>Status, if present.
domain: StringThe queried domain name.
id: Option<String>The domain id, if present.
Trait Implementations§
Source§impl Clone for DomainCheck
impl Clone for DomainCheck
Source§fn clone(&self) -> DomainCheck
fn clone(&self) -> DomainCheck
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 moreSource§impl Debug for DomainCheck
impl Debug for DomainCheck
Source§impl<'de> Deserialize<'de> for DomainCheck
impl<'de> Deserialize<'de> for DomainCheck
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>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for DomainCheck
impl RefUnwindSafe for DomainCheck
impl Send for DomainCheck
impl Sync for DomainCheck
impl Unpin for DomainCheck
impl UnsafeUnpin for DomainCheck
impl UnwindSafe for DomainCheck
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