pub struct TenantCustomDomain {
pub domain: String,
pub created_at: String,
pub updated_at: Option<String>,
pub status: Option<TenantCustomDomainStatus>,
pub verification_method: Option<TenantCustomDomainVerificationMethod>,
pub verification_value: Option<String>,
pub last_checked_at: Option<String>,
pub verified_at: Option<String>,
pub dns: Option<Map<String, Value>>,
pub cert: Option<Map<String, Value>>,
}Expand description
TenantCustomDomain model.
Fields§
§domain: String§created_at: String§updated_at: Option<String>§status: Option<TenantCustomDomainStatus>§verification_method: Option<TenantCustomDomainVerificationMethod>§verification_value: Option<String>§last_checked_at: Option<String>§verified_at: Option<String>§dns: Option<Map<String, Value>>§cert: Option<Map<String, Value>>Trait Implementations§
Source§impl Clone for TenantCustomDomain
impl Clone for TenantCustomDomain
Source§fn clone(&self) -> TenantCustomDomain
fn clone(&self) -> TenantCustomDomain
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 TenantCustomDomain
impl Debug for TenantCustomDomain
Source§impl Default for TenantCustomDomain
impl Default for TenantCustomDomain
Source§fn default() -> TenantCustomDomain
fn default() -> TenantCustomDomain
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TenantCustomDomain
impl<'de> Deserialize<'de> for TenantCustomDomain
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
Source§impl PartialEq for TenantCustomDomain
impl PartialEq for TenantCustomDomain
Source§impl Serialize for TenantCustomDomain
impl Serialize for TenantCustomDomain
impl StructuralPartialEq for TenantCustomDomain
Auto Trait Implementations§
impl Freeze for TenantCustomDomain
impl RefUnwindSafe for TenantCustomDomain
impl Send for TenantCustomDomain
impl Sync for TenantCustomDomain
impl Unpin for TenantCustomDomain
impl UnsafeUnpin for TenantCustomDomain
impl UnwindSafe for TenantCustomDomain
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