We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53d6cd0 commit 79f854eCopy full SHA for 79f854e
1 file changed
src/errors/mod.rs
@@ -70,7 +70,7 @@ pub enum DecryptError {
70
SealError(#[from] SealError),
71
}
72
73
-/// Error returned by [`EncryptedTable::query`] when indexing, retrieving and decrypting records from DynamoDB
+/// Error returned by [`crate::EncryptedTable::query`] when indexing, retrieving and decrypting records from DynamoDB
74
#[derive(Error, Debug, Diagnostic)]
75
pub enum QueryError {
76
#[error("PrimaryKeyError: {0}")]
@@ -86,9 +86,6 @@ pub enum QueryError {
86
#[error("{0}")]
87
Other(String),
88
89
- // TODO: Remove this (and repeat for all the operations)
90
- //#[error("AwsError: {0}")]
91
- //AwsError(String),
92
#[error(transparent)]
93
DynamoError(#[from] SdkError<operation::query::QueryError>),
94
0 commit comments