pub enum DynamoDbMutexError {
CreateTable(RusotoError<CreateTableError>),
UpdateItem(RusotoError<UpdateItemError>),
DeleteItem(RusotoError<DeleteItemError>),
FailDbValue,
}
Variants§
CreateTable(RusotoError<CreateTableError>)
UpdateItem(RusotoError<UpdateItemError>)
DeleteItem(RusotoError<DeleteItemError>)
FailDbValue
Trait Implementations§
Source§impl Debug for DynamoDbMutexError
impl Debug for DynamoDbMutexError
Source§impl Display for DynamoDbMutexError
impl Display for DynamoDbMutexError
Source§impl Error for DynamoDbMutexError
impl Error for DynamoDbMutexError
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 From<RusotoError<CreateTableError>> for DynamoDbMutexError
impl From<RusotoError<CreateTableError>> for DynamoDbMutexError
Source§fn from(source: RusotoError<CreateTableError>) -> Self
fn from(source: RusotoError<CreateTableError>) -> Self
Converts to this type from the input type.
Source§impl From<RusotoError<DeleteItemError>> for DynamoDbMutexError
impl From<RusotoError<DeleteItemError>> for DynamoDbMutexError
Source§fn from(source: RusotoError<DeleteItemError>) -> Self
fn from(source: RusotoError<DeleteItemError>) -> Self
Converts to this type from the input type.
Source§impl From<RusotoError<UpdateItemError>> for DynamoDbMutexError
impl From<RusotoError<UpdateItemError>> for DynamoDbMutexError
Source§fn from(source: RusotoError<UpdateItemError>) -> Self
fn from(source: RusotoError<UpdateItemError>) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl !Freeze for DynamoDbMutexError
impl RefUnwindSafe for DynamoDbMutexError
impl Send for DynamoDbMutexError
impl Sync for DynamoDbMutexError
impl Unpin for DynamoDbMutexError
impl UnwindSafe for DynamoDbMutexError
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