pub enum StopQueryError {
InvalidParameter(String),
ResourceNotFound(String),
ServiceUnavailable(String),
}Expand description
Errors returned by StopQuery
Variants§
InvalidParameter(String)
A parameter is specified incorrectly.
ResourceNotFound(String)
The specified resource does not exist.
The service cannot complete the request.
Implementations§
Source§impl StopQueryError
impl StopQueryError
pub fn from_response(res: BufferedHttpResponse) -> RusotoError<StopQueryError>
Trait Implementations§
Source§impl Debug for StopQueryError
impl Debug for StopQueryError
Source§impl Display for StopQueryError
impl Display for StopQueryError
Source§impl Error for StopQueryError
impl Error for StopQueryError
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 StopQueryError
impl PartialEq for StopQueryError
impl StructuralPartialEq for StopQueryError
Auto Trait Implementations§
impl Freeze for StopQueryError
impl RefUnwindSafe for StopQueryError
impl Send for StopQueryError
impl Sync for StopQueryError
impl Unpin for StopQueryError
impl UnwindSafe for StopQueryError
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