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 9c1bede commit 9cbe97eCopy full SHA for 9cbe97e
mithril-common/src/store/adapter/store_adapter.rs
@@ -21,17 +21,9 @@ pub enum AdapterError {
21
#[error("problem parsing the IO stream: {0:?}")]
22
ParsingDataError(StdError),
23
24
- /// Error raised if a writting operation fails.
25
- #[error("problem writing on the adapter: {0:?}")]
26
- MutationError(StdError),
27
-
28
/// Error while querying the subsystem.
29
#[error("problem when querying the adapter: {0:?}")]
30
QueryError(StdError),
31
32
- /// Type conversion cannot be performed by this adapter.
33
- #[error("type conversion error, this adapter does not know how to handle this: {0:?}")]
34
- TypeError(StdError),
35
}
36
37
/// Represent a way to store Key/Value pair data.
0 commit comments