pub enum DeleteImageError {
ConcurrentModification(String),
OperationNotPermitted(String),
ResourceInUse(String),
ResourceNotFound(String),
}
Expand description
Errors returned by DeleteImage
Variants§
ConcurrentModification(String)
An API error occurred. Wait a few minutes and try again.
OperationNotPermitted(String)
The attempted operation is not permitted.
ResourceInUse(String)
The specified resource is in use.
ResourceNotFound(String)
The specified resource was not found.
Implementations§
Source§impl DeleteImageError
impl DeleteImageError
pub fn from_response(res: BufferedHttpResponse) -> RusotoError<DeleteImageError>
Trait Implementations§
Source§impl Debug for DeleteImageError
impl Debug for DeleteImageError
Source§impl Display for DeleteImageError
impl Display for DeleteImageError
Source§impl Error for DeleteImageError
impl Error for DeleteImageError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl PartialEq for DeleteImageError
impl PartialEq for DeleteImageError
impl StructuralPartialEq for DeleteImageError
Auto Trait Implementations§
impl Freeze for DeleteImageError
impl RefUnwindSafe for DeleteImageError
impl Send for DeleteImageError
impl Sync for DeleteImageError
impl Unpin for DeleteImageError
impl UnwindSafe for DeleteImageError
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