Enum easy_sqlite::entities::errors::DbError
source · pub enum DbError {
CanNotConnect(String),
CanNotInitTable(&'static str, String),
NotFound(Option<String>),
MutexError,
DeserializationError(String),
Other(String),
}Variants§
CanNotConnect(String)
CanNotInitTable(&'static str, String)
NotFound(Option<String>)
MutexError
DeserializationError(String)
Other(String)
Trait Implementations§
source§impl<T> From<PoisonError<T>> for DbError
impl<T> From<PoisonError<T>> for DbError
source§fn from(_: PoisonError<T>) -> Self
fn from(_: PoisonError<T>) -> Self
Converts to this type from the input type.