pub enum StopImageBuilderError {
ConcurrentModification(String),
OperationNotPermitted(String),
ResourceNotFound(String),
}
Expand description
Errors returned by StopImageBuilder
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 StopImageBuilderError
impl StopImageBuilderError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<StopImageBuilderError>
Trait Implementations§
Source§impl Debug for StopImageBuilderError
impl Debug for StopImageBuilderError
Source§impl Display for StopImageBuilderError
impl Display for StopImageBuilderError
Source§impl Error for StopImageBuilderError
impl Error for StopImageBuilderError
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 StopImageBuilderError
impl PartialEq for StopImageBuilderError
impl StructuralPartialEq for StopImageBuilderError
Auto Trait Implementations§
impl Freeze for StopImageBuilderError
impl RefUnwindSafe for StopImageBuilderError
impl Send for StopImageBuilderError
impl Sync for StopImageBuilderError
impl Unpin for StopImageBuilderError
impl UnwindSafe for StopImageBuilderError
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