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