#[non_exhaustive]pub struct DomainMaintenanceDetails {
pub maintenance_id: Option<String>,
pub domain_name: Option<String>,
pub action: Option<MaintenanceType>,
pub node_id: Option<String>,
pub status: Option<MaintenanceStatus>,
pub status_message: Option<String>,
pub created_at: Option<DateTime>,
pub updated_at: Option<DateTime>,
}
Expand description
Container for the domain maintenance details.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.maintenance_id: Option<String>
The ID of the requested action.
domain_name: Option<String>
The name of the domain.
action: Option<MaintenanceType>
The name of the action.
node_id: Option<String>
The ID of the data node.
status: Option<MaintenanceStatus>
The status of the action.
status_message: Option<String>
The status message for the action.
created_at: Option<DateTime>
The time at which the action was created.
updated_at: Option<DateTime>
The time at which the action was updated.
Implementations§
source§impl DomainMaintenanceDetails
impl DomainMaintenanceDetails
sourcepub fn maintenance_id(&self) -> Option<&str>
pub fn maintenance_id(&self) -> Option<&str>
The ID of the requested action.
sourcepub fn domain_name(&self) -> Option<&str>
pub fn domain_name(&self) -> Option<&str>
The name of the domain.
sourcepub fn action(&self) -> Option<&MaintenanceType>
pub fn action(&self) -> Option<&MaintenanceType>
The name of the action.
sourcepub fn status(&self) -> Option<&MaintenanceStatus>
pub fn status(&self) -> Option<&MaintenanceStatus>
The status of the action.
sourcepub fn status_message(&self) -> Option<&str>
pub fn status_message(&self) -> Option<&str>
The status message for the action.
sourcepub fn created_at(&self) -> Option<&DateTime>
pub fn created_at(&self) -> Option<&DateTime>
The time at which the action was created.
sourcepub fn updated_at(&self) -> Option<&DateTime>
pub fn updated_at(&self) -> Option<&DateTime>
The time at which the action was updated.
source§impl DomainMaintenanceDetails
impl DomainMaintenanceDetails
sourcepub fn builder() -> DomainMaintenanceDetailsBuilder
pub fn builder() -> DomainMaintenanceDetailsBuilder
Creates a new builder-style object to manufacture DomainMaintenanceDetails
.
Trait Implementations§
source§impl Clone for DomainMaintenanceDetails
impl Clone for DomainMaintenanceDetails
source§fn clone(&self) -> DomainMaintenanceDetails
fn clone(&self) -> DomainMaintenanceDetails
Returns a copy of the value. Read more
1.0.0 · 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 DomainMaintenanceDetails
impl Debug for DomainMaintenanceDetails
source§impl PartialEq for DomainMaintenanceDetails
impl PartialEq for DomainMaintenanceDetails
source§fn eq(&self, other: &DomainMaintenanceDetails) -> bool
fn eq(&self, other: &DomainMaintenanceDetails) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DomainMaintenanceDetails
Auto Trait Implementations§
impl RefUnwindSafe for DomainMaintenanceDetails
impl Send for DomainMaintenanceDetails
impl Sync for DomainMaintenanceDetails
impl Unpin for DomainMaintenanceDetails
impl UnwindSafe for DomainMaintenanceDetails
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.