pub struct Domain {
pub id: String,
pub name: String,
pub status: String,
pub dkim_selector: String,
pub verified_at: Option<String>,
pub created_at: Option<String>,
pub dns_records: Vec<DnsRecord>,
pub platform_warning: Option<String>,
}Expand description
A sending domain with its DKIM selector and DNS records.
Fields§
§id: StringDomain id.
name: StringDomain name.
status: StringVerification status.
dkim_selector: StringThe DKIM selector.
verified_at: Option<String>When the domain was verified.
created_at: Option<String>Creation time.
dns_records: Vec<DnsRecord>DNS records to publish.
platform_warning: Option<String>Warning if this is a platform/shared domain.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Domain
impl<'de> Deserialize<'de> for Domain
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 Domain
impl RefUnwindSafe for Domain
impl Send for Domain
impl Sync for Domain
impl Unpin for Domain
impl UnsafeUnpin for Domain
impl UnwindSafe for Domain
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