Struct docker_sdk::image::ImageDetails
source · 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
sourceimpl Clone for ImageDetails
impl Clone for ImageDetails
sourcefn clone(&self) -> ImageDetails
fn clone(&self) -> ImageDetails
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for ImageDetails
impl Debug for ImageDetails
sourceimpl<'de> Deserialize<'de> for ImageDetails
impl<'de> Deserialize<'de> for ImageDetails
sourcefn 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
sourceimpl Serialize for ImageDetails
impl Serialize for ImageDetails
Auto Trait Implementations
impl RefUnwindSafe for ImageDetails
impl Send for ImageDetails
impl Sync for ImageDetails
impl Unpin for ImageDetails
impl UnwindSafe for ImageDetails
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more