Struct aws_sdk_imagebuilder::types::ImageScanState
source · #[non_exhaustive]pub struct ImageScanState {
pub status: Option<ImageScanStatus>,
pub reason: Option<String>,
}
Expand description
Shows the vulnerability scan status for a specific image, and the reason for that status.
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.status: Option<ImageScanStatus>
The current state of vulnerability scans for the image.
reason: Option<String>
The reason for the scan status for the image.
Implementations§
source§impl ImageScanState
impl ImageScanState
sourcepub fn builder() -> ImageScanStateBuilder
pub fn builder() -> ImageScanStateBuilder
Creates a new builder-style object to manufacture ImageScanState
.
Trait Implementations§
source§impl Clone for ImageScanState
impl Clone for ImageScanState
source§fn clone(&self) -> ImageScanState
fn clone(&self) -> ImageScanState
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 ImageScanState
impl Debug for ImageScanState
source§impl PartialEq for ImageScanState
impl PartialEq for ImageScanState
source§fn eq(&self, other: &ImageScanState) -> bool
fn eq(&self, other: &ImageScanState) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ImageScanState
Auto Trait Implementations§
impl Freeze for ImageScanState
impl RefUnwindSafe for ImageScanState
impl Send for ImageScanState
impl Sync for ImageScanState
impl Unpin for ImageScanState
impl UnwindSafe for ImageScanState
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.