pub enum BatchExecuteStatementError {
BadRequest(String),
Forbidden(String),
InternalServerError(String),
ServiceUnavailableError(String),
StatementTimeout(String),
}Expand description
Errors returned by BatchExecuteStatement
Variants§
BadRequest(String)
There is an error in the call or in a SQL statement.
Forbidden(String)
There are insufficient privileges to make the call.
InternalServerError(String)
An internal error occurred.
The service specified by the resourceArn parameter is not available.
StatementTimeout(String)
The execution of the SQL statement timed out.
Implementations§
Source§impl BatchExecuteStatementError
impl BatchExecuteStatementError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<BatchExecuteStatementError>
Trait Implementations§
Source§impl Debug for BatchExecuteStatementError
impl Debug for BatchExecuteStatementError
Source§impl Display for BatchExecuteStatementError
impl Display for BatchExecuteStatementError
Source§impl Error for BatchExecuteStatementError
impl Error for BatchExecuteStatementError
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()
impl StructuralPartialEq for BatchExecuteStatementError
Auto Trait Implementations§
impl Freeze for BatchExecuteStatementError
impl RefUnwindSafe for BatchExecuteStatementError
impl Send for BatchExecuteStatementError
impl Sync for BatchExecuteStatementError
impl Unpin for BatchExecuteStatementError
impl UnwindSafe for BatchExecuteStatementError
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