pub enum TableError {
QueryError(Error),
CannotConnect(TableConnectError),
CannotRead(Error),
}
Expand description
Errors that can happen when extracting data from a SQLite
table
Variants§
QueryError(Error)
Error when querying the table
CannotConnect(TableConnectError)
Error when connecting to the database
CannotRead(Error)
Error when reading from the database file
Trait Implementations§
Source§impl Debug for TableError
impl Debug for TableError
Source§impl Display for TableError
impl Display for TableError
Source§impl From<Error> for TableError
impl From<Error> for TableError
Auto Trait Implementations§
impl Freeze for TableError
impl !RefUnwindSafe for TableError
impl Send for TableError
impl Sync for TableError
impl Unpin for TableError
impl !UnwindSafe for TableError
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