pub struct DeleteResponse {
pub deleted: Option<String>,
pub untagged: Option<String>,
}
Expand description
DeleteResponse : 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
Implementations§
Source§impl DeleteResponse
impl DeleteResponse
Sourcepub fn new() -> DeleteResponse
pub fn new() -> DeleteResponse
DeleteResponse delete response
Trait Implementations§
Source§impl Clone for DeleteResponse
impl Clone for DeleteResponse
Source§fn clone(&self) -> DeleteResponse
fn clone(&self) -> DeleteResponse
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 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
Source§impl PartialEq for DeleteResponse
impl PartialEq for DeleteResponse
Source§impl Serialize for DeleteResponse
impl Serialize for DeleteResponse
impl StructuralPartialEq for DeleteResponse
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