#[non_exhaustive]pub struct ChangeProgressStatusDetails {
pub change_id: Option<String>,
pub start_time: Option<DateTime>,
pub status: Option<OverallChangeStatus>,
pub pending_properties: Option<Vec<String>>,
pub completed_properties: Option<Vec<String>>,
pub total_number_of_stages: i32,
pub change_progress_stages: Option<Vec<ChangeProgressStage>>,
}
Expand description
The progress details of a specific domain configuration change.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.change_id: Option<String>
The unique change identifier associated with a specific domain configuration change.
start_time: Option<DateTime>
The time at which the configuration change is made on the domain.
status: Option<OverallChangeStatus>
The overall status of the domain configuration change. This field can take the following values: PENDING
, PROCESSING
, COMPLETED
and FAILED
pending_properties: Option<Vec<String>>
The list of properties involved in the domain configuration change that are still in pending.
completed_properties: Option<Vec<String>>
The list of properties involved in the domain configuration change that are completed.
total_number_of_stages: i32
The total number of stages required for the configuration change.
change_progress_stages: Option<Vec<ChangeProgressStage>>
The specific stages that the domain is going through to perform the configuration change.
Implementations
sourceimpl ChangeProgressStatusDetails
impl ChangeProgressStatusDetails
sourcepub fn change_id(&self) -> Option<&str>
pub fn change_id(&self) -> Option<&str>
The unique change identifier associated with a specific domain configuration change.
sourcepub fn start_time(&self) -> Option<&DateTime>
pub fn start_time(&self) -> Option<&DateTime>
The time at which the configuration change is made on the domain.
sourcepub fn status(&self) -> Option<&OverallChangeStatus>
pub fn status(&self) -> Option<&OverallChangeStatus>
The overall status of the domain configuration change. This field can take the following values: PENDING
, PROCESSING
, COMPLETED
and FAILED
sourcepub fn pending_properties(&self) -> Option<&[String]>
pub fn pending_properties(&self) -> Option<&[String]>
The list of properties involved in the domain configuration change that are still in pending.
sourcepub fn completed_properties(&self) -> Option<&[String]>
pub fn completed_properties(&self) -> Option<&[String]>
The list of properties involved in the domain configuration change that are completed.
sourcepub fn total_number_of_stages(&self) -> i32
pub fn total_number_of_stages(&self) -> i32
The total number of stages required for the configuration change.
sourcepub fn change_progress_stages(&self) -> Option<&[ChangeProgressStage]>
pub fn change_progress_stages(&self) -> Option<&[ChangeProgressStage]>
The specific stages that the domain is going through to perform the configuration change.
sourceimpl ChangeProgressStatusDetails
impl ChangeProgressStatusDetails
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ChangeProgressStatusDetails
Trait Implementations
sourceimpl Clone for ChangeProgressStatusDetails
impl Clone for ChangeProgressStatusDetails
sourcefn clone(&self) -> ChangeProgressStatusDetails
fn clone(&self) -> ChangeProgressStatusDetails
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ChangeProgressStatusDetails
impl Debug for ChangeProgressStatusDetails
sourceimpl PartialEq<ChangeProgressStatusDetails> for ChangeProgressStatusDetails
impl PartialEq<ChangeProgressStatusDetails> for ChangeProgressStatusDetails
sourcefn eq(&self, other: &ChangeProgressStatusDetails) -> bool
fn eq(&self, other: &ChangeProgressStatusDetails) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &ChangeProgressStatusDetails) -> bool
fn ne(&self, other: &ChangeProgressStatusDetails) -> bool
This method tests for !=
.
impl StructuralPartialEq for ChangeProgressStatusDetails
Auto Trait Implementations
impl RefUnwindSafe for ChangeProgressStatusDetails
impl Send for ChangeProgressStatusDetails
impl Sync for ChangeProgressStatusDetails
impl Unpin for ChangeProgressStatusDetails
impl UnwindSafe for ChangeProgressStatusDetails
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more