Struct aws_sdk_m2::types::ApplicationVersionSummary
source · #[non_exhaustive]pub struct ApplicationVersionSummary {
pub application_version: i32,
pub status: ApplicationVersionLifecycle,
pub status_reason: Option<String>,
pub creation_time: DateTime,
}
Expand description
Defines an application version summary.
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_version: i32
The application version.
status: ApplicationVersionLifecycle
The status of the application.
status_reason: Option<String>
The reason for the reported status.
creation_time: DateTime
The timestamp when the application version was created.
Implementations§
source§impl ApplicationVersionSummary
impl ApplicationVersionSummary
sourcepub fn application_version(&self) -> i32
pub fn application_version(&self) -> i32
The application version.
sourcepub fn status(&self) -> &ApplicationVersionLifecycle
pub fn status(&self) -> &ApplicationVersionLifecycle
The status of the application.
sourcepub fn status_reason(&self) -> Option<&str>
pub fn status_reason(&self) -> Option<&str>
The reason for the reported status.
sourcepub fn creation_time(&self) -> &DateTime
pub fn creation_time(&self) -> &DateTime
The timestamp when the application version was created.
source§impl ApplicationVersionSummary
impl ApplicationVersionSummary
sourcepub fn builder() -> ApplicationVersionSummaryBuilder
pub fn builder() -> ApplicationVersionSummaryBuilder
Creates a new builder-style object to manufacture ApplicationVersionSummary
.
Trait Implementations§
source§impl Clone for ApplicationVersionSummary
impl Clone for ApplicationVersionSummary
source§fn clone(&self) -> ApplicationVersionSummary
fn clone(&self) -> ApplicationVersionSummary
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 ApplicationVersionSummary
impl Debug for ApplicationVersionSummary
source§impl PartialEq for ApplicationVersionSummary
impl PartialEq for ApplicationVersionSummary
source§fn eq(&self, other: &ApplicationVersionSummary) -> bool
fn eq(&self, other: &ApplicationVersionSummary) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ApplicationVersionSummary
Auto Trait Implementations§
impl RefUnwindSafe for ApplicationVersionSummary
impl Send for ApplicationVersionSummary
impl Sync for ApplicationVersionSummary
impl Unpin for ApplicationVersionSummary
impl UnwindSafe for ApplicationVersionSummary
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.