pub struct Delete;
Expand description
Delete an image tag by index.
§Authorization
Standard + UserScope::Admin
§Errors
Unauthorized
if authorization is not valid.Forbidden
if the user does not have sufficient permission to perform the action.BadRequest
if the givenid
is not aUuid
or the request is missing/invalid.NotFound
if the image tag does not exist.
Trait Implementations§
Source§impl ApiEndpoint for Delete
impl ApiEndpoint for Delete
Source§type Path = ImageTagDeletePath
type Path = ImageTagDeletePath
The path type for this endpoint.
Source§type Err = EmptyError
type Err = EmptyError
The (inner) error type for this endpoint.
Auto Trait Implementations§
impl Freeze for Delete
impl RefUnwindSafe for Delete
impl Send for Delete
impl Sync for Delete
impl Unpin for Delete
impl UnwindSafe for Delete
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