pub struct DeleteResponse {
pub deleted: Option<String>,
pub untagged: Option<String>,
}
Available on crate feature
v5
only.Expand description
DeleteResponse delete response
Fields§
§deleted: Option<String>
The image ID of an image that was deleted
untagged: Option<String>
The image ID of an image that was untagged
Trait Implementations§
Source§impl Debug for DeleteResponse
impl Debug for DeleteResponse
Source§impl Default for DeleteResponse
impl Default for DeleteResponse
Source§fn default() -> DeleteResponse
fn default() -> DeleteResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeleteResponse
impl<'de> Deserialize<'de> for DeleteResponse
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 DeleteResponse
impl RefUnwindSafe for DeleteResponse
impl Send for DeleteResponse
impl Sync for DeleteResponse
impl Unpin for DeleteResponse
impl UnwindSafe for DeleteResponse
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