Struct aws_sdk_m2::types::ApplicationVersionSummary
source · #[non_exhaustive]pub struct ApplicationVersionSummary {
pub application_version: Option<i32>,
pub status: Option<ApplicationVersionLifecycle>,
pub status_reason: Option<String>,
pub creation_time: Option<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: Option<i32>
The application version.
status: Option<ApplicationVersionLifecycle>
The status of the application.
status_reason: Option<String>
The reason for the reported status.
creation_time: Option<DateTime>
The timestamp when the application version was created.
Implementations§
source§impl ApplicationVersionSummary
impl ApplicationVersionSummary
sourcepub fn application_version(&self) -> Option<i32>
pub fn application_version(&self) -> Option<i32>
The application version.
sourcepub fn status(&self) -> Option<&ApplicationVersionLifecycle>
pub fn status(&self) -> Option<&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) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&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<ApplicationVersionSummary> for ApplicationVersionSummary
impl PartialEq<ApplicationVersionSummary> 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