Enum pliantdb_local::Error [−][src]
pub enum Error { Sled(Error), InternalSerialization(Error), Serialization(Error), InternalCommunication(RecvError), View(Error), Core(Error), Other(Arc<Error>), }
Expand description
Errors that can occur from interacting with storage.
Variants
Sled(Error)
An error occurred interacting with sled
.
InternalSerialization(Error)
An error occurred serializing the underlying database structures.
Serialization(Error)
An error occurred serializing the contents of a Document
or results of a View
.
InternalCommunication(RecvError)
An internal error occurred while waiting for a message.
View(Error)
An error occurred while executing a view
Core(Error)
An core error occurred.
An unexpected error occurred.
Trait Implementations
Performs the conversion.
Auto Trait Implementations
impl !RefUnwindSafe for Error
impl !UnwindSafe for Error