[][src]Struct rusoto_ecr::ImageScanFindings

pub struct ImageScanFindings {
    pub finding_severity_counts: Option<HashMap<String, i64>>,
    pub findings: Option<Vec<ImageScanFinding>>,
    pub image_scan_completed_at: Option<f64>,
    pub vulnerability_source_updated_at: Option<f64>,
}

The details of an image scan.

Fields

finding_severity_counts: Option<HashMap<String, i64>>

The image vulnerability counts, sorted by severity.

findings: Option<Vec<ImageScanFinding>>

The findings from the image scan.

image_scan_completed_at: Option<f64>

The time of the last completed image scan.

vulnerability_source_updated_at: Option<f64>

The time when the vulnerability data was last scanned.

Trait Implementations

impl Clone for ImageScanFindings[src]

impl Debug for ImageScanFindings[src]

impl Default for ImageScanFindings[src]

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

impl PartialEq<ImageScanFindings> for ImageScanFindings[src]

impl StructuralPartialEq for ImageScanFindings[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.