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