pub enum BatchExecuteStatementError {
InternalServerError(String),
RequestLimitExceeded(String),
}
Expand description
Errors returned by BatchExecuteStatement
Variants§
InternalServerError(String)
An error occurred on the server side.
RequestLimitExceeded(String)
Throughput exceeds the current throughput quota for your account. Please contact AWS Support at AWS Support to request a quota increase.
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