Struct aws_sdk_migrationhub::operation::describe_application_state::DescribeApplicationStateOutput
source · #[non_exhaustive]pub struct DescribeApplicationStateOutput {
pub application_status: Option<ApplicationStatus>,
pub last_updated_time: Option<DateTime>,
/* private fields */
}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.application_status: Option<ApplicationStatus>Status of the application - Not Started, In-Progress, Complete.
last_updated_time: Option<DateTime>The timestamp when the application status was last updated.
Implementations§
source§impl DescribeApplicationStateOutput
impl DescribeApplicationStateOutput
sourcepub fn application_status(&self) -> Option<&ApplicationStatus>
pub fn application_status(&self) -> Option<&ApplicationStatus>
Status of the application - Not Started, In-Progress, Complete.
sourcepub fn last_updated_time(&self) -> Option<&DateTime>
pub fn last_updated_time(&self) -> Option<&DateTime>
The timestamp when the application status was last updated.
source§impl DescribeApplicationStateOutput
impl DescribeApplicationStateOutput
sourcepub fn builder() -> DescribeApplicationStateOutputBuilder
pub fn builder() -> DescribeApplicationStateOutputBuilder
Creates a new builder-style object to manufacture DescribeApplicationStateOutput.
Trait Implementations§
source§impl Clone for DescribeApplicationStateOutput
impl Clone for DescribeApplicationStateOutput
source§fn clone(&self) -> DescribeApplicationStateOutput
fn clone(&self) -> DescribeApplicationStateOutput
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 PartialEq for DescribeApplicationStateOutput
impl PartialEq for DescribeApplicationStateOutput
source§fn eq(&self, other: &DescribeApplicationStateOutput) -> bool
fn eq(&self, other: &DescribeApplicationStateOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl RequestId for DescribeApplicationStateOutput
impl RequestId for DescribeApplicationStateOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None if the service could not be reached.impl StructuralPartialEq for DescribeApplicationStateOutput
Auto Trait Implementations§
impl RefUnwindSafe for DescribeApplicationStateOutput
impl Send for DescribeApplicationStateOutput
impl Sync for DescribeApplicationStateOutput
impl Unpin for DescribeApplicationStateOutput
impl UnwindSafe for DescribeApplicationStateOutput
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.