[][src]Struct rusoto_securityhub::ContainerDetails

pub struct ContainerDetails {
    pub image_id: Option<String>,
    pub image_name: Option<String>,
    pub launched_at: Option<String>,
    pub name: Option<String>,
}

Container details related to a finding.

Fields

image_id: Option<String>

The identifier of the image related to a finding.

image_name: Option<String>

The name of the image related to a finding.

launched_at: Option<String>

The date and time when the container started.

name: Option<String>

The name of the container related to a finding.

Trait Implementations

impl Clone for ContainerDetails[src]

impl Debug for ContainerDetails[src]

impl Default for ContainerDetails[src]

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

impl PartialEq<ContainerDetails> for ContainerDetails[src]

impl Serialize for ContainerDetails[src]

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