pub struct GetTenantDomainHealthResponse {
pub domain: String,
pub created_at: String,
pub updated_at: Option<String>,
pub dns: Option<DomainDnsLifecycle>,
pub cert: Option<DomainCertLifecycle>,
}Expand description
GetTenantDomainHealthResponse model.
Fields§
§domain: StringHostname only — no scheme, no path.
created_at: String§updated_at: Option<String>§dns: Option<DomainDnsLifecycle>§cert: Option<DomainCertLifecycle>Trait Implementations§
Source§impl Clone for GetTenantDomainHealthResponse
impl Clone for GetTenantDomainHealthResponse
Source§fn clone(&self) -> GetTenantDomainHealthResponse
fn clone(&self) -> GetTenantDomainHealthResponse
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 Default for GetTenantDomainHealthResponse
impl Default for GetTenantDomainHealthResponse
Source§fn default() -> GetTenantDomainHealthResponse
fn default() -> GetTenantDomainHealthResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetTenantDomainHealthResponse
impl<'de> Deserialize<'de> for GetTenantDomainHealthResponse
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
impl StructuralPartialEq for GetTenantDomainHealthResponse
Auto Trait Implementations§
impl Freeze for GetTenantDomainHealthResponse
impl RefUnwindSafe for GetTenantDomainHealthResponse
impl Send for GetTenantDomainHealthResponse
impl Sync for GetTenantDomainHealthResponse
impl Unpin for GetTenantDomainHealthResponse
impl UnsafeUnpin for GetTenantDomainHealthResponse
impl UnwindSafe for GetTenantDomainHealthResponse
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