#[non_exhaustive]pub struct ApplicationVersionSummaryBuilder { /* private fields */ }
Expand description
A builder for ApplicationVersionSummary
.
Implementations§
source§impl ApplicationVersionSummaryBuilder
impl ApplicationVersionSummaryBuilder
sourcepub fn application_version(self, input: i32) -> Self
pub fn application_version(self, input: i32) -> Self
The application version.
sourcepub fn set_application_version(self, input: Option<i32>) -> Self
pub fn set_application_version(self, input: Option<i32>) -> Self
The application version.
sourcepub fn get_application_version(&self) -> &Option<i32>
pub fn get_application_version(&self) -> &Option<i32>
The application version.
sourcepub fn status(self, input: ApplicationVersionLifecycle) -> Self
pub fn status(self, input: ApplicationVersionLifecycle) -> Self
The status of the application.
sourcepub fn set_status(self, input: Option<ApplicationVersionLifecycle>) -> Self
pub fn set_status(self, input: Option<ApplicationVersionLifecycle>) -> Self
The status of the application.
sourcepub fn get_status(&self) -> &Option<ApplicationVersionLifecycle>
pub fn get_status(&self) -> &Option<ApplicationVersionLifecycle>
The status of the application.
sourcepub fn status_reason(self, input: impl Into<String>) -> Self
pub fn status_reason(self, input: impl Into<String>) -> Self
The reason for the reported status.
sourcepub fn set_status_reason(self, input: Option<String>) -> Self
pub fn set_status_reason(self, input: Option<String>) -> Self
The reason for the reported status.
sourcepub fn get_status_reason(&self) -> &Option<String>
pub fn get_status_reason(&self) -> &Option<String>
The reason for the reported status.
sourcepub fn creation_time(self, input: DateTime) -> Self
pub fn creation_time(self, input: DateTime) -> Self
The timestamp when the application version was created.
sourcepub fn set_creation_time(self, input: Option<DateTime>) -> Self
pub fn set_creation_time(self, input: Option<DateTime>) -> Self
The timestamp when the application version was created.
sourcepub fn get_creation_time(&self) -> &Option<DateTime>
pub fn get_creation_time(&self) -> &Option<DateTime>
The timestamp when the application version was created.
sourcepub fn build(self) -> ApplicationVersionSummary
pub fn build(self) -> ApplicationVersionSummary
Consumes the builder and constructs a ApplicationVersionSummary
.
Trait Implementations§
source§impl Clone for ApplicationVersionSummaryBuilder
impl Clone for ApplicationVersionSummaryBuilder
source§fn clone(&self) -> ApplicationVersionSummaryBuilder
fn clone(&self) -> ApplicationVersionSummaryBuilder
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 Default for ApplicationVersionSummaryBuilder
impl Default for ApplicationVersionSummaryBuilder
source§fn default() -> ApplicationVersionSummaryBuilder
fn default() -> ApplicationVersionSummaryBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<ApplicationVersionSummaryBuilder> for ApplicationVersionSummaryBuilder
impl PartialEq<ApplicationVersionSummaryBuilder> for ApplicationVersionSummaryBuilder
source§fn eq(&self, other: &ApplicationVersionSummaryBuilder) -> bool
fn eq(&self, other: &ApplicationVersionSummaryBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ApplicationVersionSummaryBuilder
Auto Trait Implementations§
impl RefUnwindSafe for ApplicationVersionSummaryBuilder
impl Send for ApplicationVersionSummaryBuilder
impl Sync for ApplicationVersionSummaryBuilder
impl Unpin for ApplicationVersionSummaryBuilder
impl UnwindSafe for ApplicationVersionSummaryBuilder
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