pub struct ContainerDetails {
pub image_id: Option<String>,
pub image_name: Option<String>,
pub launched_at: Option<String>,
pub name: Option<String>,
}
Expand description
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§
Source§impl Clone for ContainerDetails
impl Clone for ContainerDetails
Source§fn clone(&self) -> ContainerDetails
fn clone(&self) -> ContainerDetails
Returns a duplicate 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 ContainerDetails
impl Debug for ContainerDetails
Source§impl Default for ContainerDetails
impl Default for ContainerDetails
Source§fn default() -> ContainerDetails
fn default() -> ContainerDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ContainerDetails
impl<'de> Deserialize<'de> for ContainerDetails
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
Source§impl PartialEq for ContainerDetails
impl PartialEq for ContainerDetails
Source§impl Serialize for ContainerDetails
impl Serialize for ContainerDetails
impl StructuralPartialEq for ContainerDetails
Auto Trait Implementations§
impl Freeze for ContainerDetails
impl RefUnwindSafe for ContainerDetails
impl Send for ContainerDetails
impl Sync for ContainerDetails
impl Unpin for ContainerDetails
impl UnwindSafe for ContainerDetails
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