pub struct ImageLayer {
pub id: String,
pub created: String,
pub created_by: String,
pub size: String,
pub comment: String,
}
Expand description
Information about an image layer
Fields§
§id: String
Layer ID
created: String
Creation timestamp
created_by: String
Command that created this layer
size: String
Size of this layer
comment: String
Comment for this layer
Trait Implementations§
Source§impl Clone for ImageLayer
impl Clone for ImageLayer
Source§fn clone(&self) -> ImageLayer
fn clone(&self) -> ImageLayer
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 ImageLayer
impl Debug for ImageLayer
Source§impl<'de> Deserialize<'de> for ImageLayer
impl<'de> Deserialize<'de> for ImageLayer
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 ImageLayer
impl RefUnwindSafe for ImageLayer
impl Send for ImageLayer
impl Sync for ImageLayer
impl Unpin for ImageLayer
impl UnwindSafe for ImageLayer
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