Struct aws_sdk_ecr::types::ImageScanFinding
source · #[non_exhaustive]pub struct ImageScanFinding { /* private fields */ }
Expand description
Contains information about an image scan finding.
Implementations§
source§impl ImageScanFinding
impl ImageScanFinding
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the finding.
sourcepub fn uri(&self) -> Option<&str>
pub fn uri(&self) -> Option<&str>
A link containing additional details about the security vulnerability.
sourcepub fn severity(&self) -> Option<&FindingSeverity>
pub fn severity(&self) -> Option<&FindingSeverity>
The finding severity.
sourcepub fn attributes(&self) -> Option<&[Attribute]>
pub fn attributes(&self) -> Option<&[Attribute]>
A collection of attributes of the host from which the finding is generated.
source§impl ImageScanFinding
impl ImageScanFinding
sourcepub fn builder() -> ImageScanFindingBuilder
pub fn builder() -> ImageScanFindingBuilder
Creates a new builder-style object to manufacture ImageScanFinding
.
Trait Implementations§
source§impl Clone for ImageScanFinding
impl Clone for ImageScanFinding
source§fn clone(&self) -> ImageScanFinding
fn clone(&self) -> ImageScanFinding
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 ImageScanFinding
impl Debug for ImageScanFinding
source§impl PartialEq<ImageScanFinding> for ImageScanFinding
impl PartialEq<ImageScanFinding> for ImageScanFinding
source§fn eq(&self, other: &ImageScanFinding) -> bool
fn eq(&self, other: &ImageScanFinding) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ImageScanFinding
Auto Trait Implementations§
impl RefUnwindSafe for ImageScanFinding
impl Send for ImageScanFinding
impl Sync for ImageScanFinding
impl Unpin for ImageScanFinding
impl UnwindSafe for ImageScanFinding
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