pub struct DeletedImage {
pub untagged: Option<String>,
pub deleted: Option<String>,
}
Expand description
Deleted image information
Fields§
§untagged: Option<String>
Untagged image references
deleted: Option<String>
Deleted image layers
Trait Implementations§
Source§impl Clone for DeletedImage
impl Clone for DeletedImage
Source§fn clone(&self) -> DeletedImage
fn clone(&self) -> DeletedImage
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 DeletedImage
impl Debug for DeletedImage
Source§impl<'de> Deserialize<'de> for DeletedImage
impl<'de> Deserialize<'de> for DeletedImage
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 DeletedImage
impl RefUnwindSafe for DeletedImage
impl Send for DeletedImage
impl Sync for DeletedImage
impl Unpin for DeletedImage
impl UnwindSafe for DeletedImage
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