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