pub struct Container {
pub create_time: Option<DateTime<Utc>>,
pub image_id: Option<String>,
pub labels: Option<Vec<Label>>,
pub name: Option<String>,
pub uri: Option<String>,
}Expand description
Container associated with the finding.
This type is not used in any activity, and only used as part of another schema.
Fields§
§create_time: Option<DateTime<Utc>>The time that the container was created.
image_id: Option<String>Optional container image ID, if provided by the container runtime. Uniquely identifies the container image launched using a container image digest.
labels: Option<Vec<Label>>Container labels, as provided by the container runtime.
name: Option<String>Name of the container.
uri: Option<String>Container image URI provided when configuring a pod or container. This string can identify a container image version using mutable tags.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Container
impl<'de> Deserialize<'de> for Container
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Part for Container
Auto Trait Implementations§
impl Freeze for Container
impl RefUnwindSafe for Container
impl Send for Container
impl Sync for Container
impl Unpin for Container
impl UnwindSafe for Container
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