pub enum DeleteImageBuilderError {
ConcurrentModification(String),
OperationNotPermitted(String),
ResourceNotFound(String),
}
Expand description
Errors returned by DeleteImageBuilder
Variants§
ConcurrentModification(String)
An API error occurred. Wait a few minutes and try again.
OperationNotPermitted(String)
The attempted operation is not permitted.
ResourceNotFound(String)
The specified resource was not found.
Implementations§
Source§impl DeleteImageBuilderError
impl DeleteImageBuilderError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<DeleteImageBuilderError>
Trait Implementations§
Source§impl Debug for DeleteImageBuilderError
impl Debug for DeleteImageBuilderError
Source§impl Display for DeleteImageBuilderError
impl Display for DeleteImageBuilderError
Source§impl Error for DeleteImageBuilderError
impl Error for DeleteImageBuilderError
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 DeleteImageBuilderError
impl PartialEq for DeleteImageBuilderError
impl StructuralPartialEq for DeleteImageBuilderError
Auto Trait Implementations§
impl Freeze for DeleteImageBuilderError
impl RefUnwindSafe for DeleteImageBuilderError
impl Send for DeleteImageBuilderError
impl Sync for DeleteImageBuilderError
impl Unpin for DeleteImageBuilderError
impl UnwindSafe for DeleteImageBuilderError
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