pub enum GetNamedQueryError {
InternalServer(String),
InvalidRequest(String),
}Expand description
Errors returned by GetNamedQuery
Variants§
InternalServer(String)
Indicates a platform issue, which may be due to a transient condition or outage.
InvalidRequest(String)
Indicates that something is wrong with the input to the request. For example, a required parameter may be missing or out of range.
Implementations§
Source§impl GetNamedQueryError
impl GetNamedQueryError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<GetNamedQueryError>
Trait Implementations§
Source§impl Debug for GetNamedQueryError
impl Debug for GetNamedQueryError
Source§impl Display for GetNamedQueryError
impl Display for GetNamedQueryError
Source§impl Error for GetNamedQueryError
impl Error for GetNamedQueryError
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 GetNamedQueryError
impl PartialEq for GetNamedQueryError
impl StructuralPartialEq for GetNamedQueryError
Auto Trait Implementations§
impl Freeze for GetNamedQueryError
impl RefUnwindSafe for GetNamedQueryError
impl Send for GetNamedQueryError
impl Sync for GetNamedQueryError
impl Unpin for GetNamedQueryError
impl UnwindSafe for GetNamedQueryError
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