Struct docker_api::api::image::models::ImageDetails
source · [−]pub struct ImageDetails {Show 18 fields
pub id: String,
pub repo_tags: Vec<String>,
pub repo_digests: Vec<String>,
pub parent: String,
pub comment: String,
pub created: DateTime<Utc>,
pub container: String,
pub docker_version: String,
pub author: String,
pub config: ContainerConfig,
pub architecture: String,
pub os: String,
pub os_version: Option<String>,
pub size: i64,
pub virtual_size: i64,
pub graph_driver: DriverData,
pub root_fs: ImageRootFs,
pub metadata: ImageMetadata,
}
Fields
id: String
repo_digests: Vec<String>
parent: String
comment: String
created: DateTime<Utc>
container: String
docker_version: String
config: ContainerConfig
architecture: String
os: String
os_version: Option<String>
size: i64
virtual_size: i64
graph_driver: DriverData
root_fs: ImageRootFs
metadata: ImageMetadata
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 more
sourceimpl 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 T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more