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