Struct aws_sdk_ecr::types::builders::ImageScanStatusBuilder
source · #[non_exhaustive]pub struct ImageScanStatusBuilder { /* private fields */ }
Expand description
A builder for ImageScanStatus
.
Implementations§
source§impl ImageScanStatusBuilder
impl ImageScanStatusBuilder
sourcepub fn status(self, input: ScanStatus) -> Self
pub fn status(self, input: ScanStatus) -> Self
The current state of an image scan.
sourcepub fn set_status(self, input: Option<ScanStatus>) -> Self
pub fn set_status(self, input: Option<ScanStatus>) -> Self
The current state of an image scan.
sourcepub fn get_status(&self) -> &Option<ScanStatus>
pub fn get_status(&self) -> &Option<ScanStatus>
The current state of an image scan.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
The description of the image scan status.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
The description of the image scan status.
sourcepub fn get_description(&self) -> &Option<String>
pub fn get_description(&self) -> &Option<String>
The description of the image scan status.
sourcepub fn build(self) -> ImageScanStatus
pub fn build(self) -> ImageScanStatus
Consumes the builder and constructs a ImageScanStatus
.
Trait Implementations§
source§impl Clone for ImageScanStatusBuilder
impl Clone for ImageScanStatusBuilder
source§fn clone(&self) -> ImageScanStatusBuilder
fn clone(&self) -> ImageScanStatusBuilder
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 ImageScanStatusBuilder
impl Debug for ImageScanStatusBuilder
source§impl Default for ImageScanStatusBuilder
impl Default for ImageScanStatusBuilder
source§fn default() -> ImageScanStatusBuilder
fn default() -> ImageScanStatusBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for ImageScanStatusBuilder
impl PartialEq for ImageScanStatusBuilder
source§fn eq(&self, other: &ImageScanStatusBuilder) -> bool
fn eq(&self, other: &ImageScanStatusBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ImageScanStatusBuilder
Auto Trait Implementations§
impl Freeze for ImageScanStatusBuilder
impl RefUnwindSafe for ImageScanStatusBuilder
impl Send for ImageScanStatusBuilder
impl Sync for ImageScanStatusBuilder
impl Unpin for ImageScanStatusBuilder
impl UnwindSafe for ImageScanStatusBuilder
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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.