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