pub enum DynamoException {
UnknownException(String),
DynamoSerializeException(String),
DynamoDeserializeException(String),
DynamoInvalidBookmark(String),
DynamoPutItemException(String),
DynamoUpdateItemException(String),
DynamoQueryException(String),
DynamoGetItemException(String),
DynamoDeleteItemException(String),
}
Variants§
UnknownException(String)
DynamoSerializeException(String)
DynamoDeserializeException(String)
DynamoInvalidBookmark(String)
DynamoPutItemException(String)
DynamoUpdateItemException(String)
DynamoQueryException(String)
DynamoGetItemException(String)
DynamoDeleteItemException(String)
Implementations§
Trait Implementations§
source§impl Clone for DynamoException
impl Clone for DynamoException
source§fn clone(&self) -> DynamoException
fn clone(&self) -> DynamoException
Returns a copy of the value. Read more
1.6.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for DynamoException
impl Debug for DynamoException
source§impl<'de> Deserialize<'de> for DynamoException
impl<'de> Deserialize<'de> for DynamoException
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Display for DynamoException
impl Display for DynamoException
source§impl Error for DynamoException
impl Error for DynamoException
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.81.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl FromStr for DynamoException
impl FromStr for DynamoException
source§impl PartialEq for DynamoException
impl PartialEq for DynamoException
source§impl Serialize for DynamoException
impl Serialize for DynamoException
impl Send for DynamoException
impl StructuralPartialEq for DynamoException
impl Sync for DynamoException
Auto Trait Implementations§
impl Freeze for DynamoException
impl RefUnwindSafe for DynamoException
impl Unpin for DynamoException
impl UnwindSafe for DynamoException
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.