pub struct ImageDetails {Show 13 fields
pub architecture: String,
pub author: String,
pub comment: String,
pub config: ContainerConfig,
pub created: DateTime<Utc>,
pub docker_version: String,
pub id: String,
pub os: String,
pub parent: String,
pub repo_tags: Option<Vec<String>>,
pub repo_digests: Option<Vec<String>>,
pub size: u64,
pub virtual_size: u64,
}
Fields§
§architecture: String
§comment: String
§config: ContainerConfig
§created: DateTime<Utc>
§docker_version: String
§id: String
§os: String
§parent: String
§repo_digests: Option<Vec<String>>
§size: u64
§virtual_size: u64
Trait Implementations§
Source§impl Clone for ImageDetails
impl Clone for ImageDetails
Source§fn clone(&self) -> ImageDetails
fn clone(&self) -> ImageDetails
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 ImageDetails
impl Debug for ImageDetails
Source§impl<'de> Deserialize<'de> for ImageDetails
impl<'de> Deserialize<'de> for ImageDetails
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
Auto Trait Implementations§
impl Freeze for ImageDetails
impl RefUnwindSafe for ImageDetails
impl Send for ImageDetails
impl Sync for ImageDetails
impl Unpin for ImageDetails
impl UnwindSafe for ImageDetails
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