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