[][src]Struct rusoto_ecr::ImageScanFinding

pub struct ImageScanFinding {
    pub attributes: Option<Vec<Attribute>>,
    pub description: Option<String>,
    pub name: Option<String>,
    pub severity: Option<String>,
    pub uri: Option<String>,
}

Contains information about an image scan finding.

Fields

attributes: Option<Vec<Attribute>>

A collection of attributes of the host from which the finding is generated.

description: Option<String>

The description of the finding.

name: Option<String>

The name associated with the finding, usually a CVE number.

severity: Option<String>

The finding severity.

uri: Option<String>

A link containing additional details about the security vulnerability.

Trait Implementations

impl Clone for ImageScanFinding[src]

impl Debug for ImageScanFinding[src]

impl Default for ImageScanFinding[src]

impl<'de> Deserialize<'de> for ImageScanFinding[src]

impl PartialEq<ImageScanFinding> for ImageScanFinding[src]

impl StructuralPartialEq for ImageScanFinding[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.