pub struct DeleteImagesQuery {
pub ids: String,
pub dry_run: bool,
}Expand description
Query parameters for DELETE /api/v1/images.
Fields§
§ids: StringComma-separated list of IMS image IDs to delete.
dry_run: boolWhen true, validate deletion eligibility without removing anything.
Trait Implementations§
Source§impl Debug for DeleteImagesQuery
impl Debug for DeleteImagesQuery
Source§impl<'de> Deserialize<'de> for DeleteImagesQuery
impl<'de> Deserialize<'de> for DeleteImagesQuery
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 IntoParams for DeleteImagesQuery
impl IntoParams for DeleteImagesQuery
Auto Trait Implementations§
impl Freeze for DeleteImagesQuery
impl RefUnwindSafe for DeleteImagesQuery
impl Send for DeleteImagesQuery
impl Sync for DeleteImagesQuery
impl Unpin for DeleteImagesQuery
impl UnwindSafe for DeleteImagesQuery
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