pub enum TableError {
Attachment(Error),
ChatToHandle(Error),
Chat(Error),
Handle(Error),
Messages(Error),
CannotConnect(String),
CannotRead(Error),
}Expand description
Errors that can happen when extracting data from a SQLite table
Variants§
Attachment(Error)
ChatToHandle(Error)
Chat(Error)
Handle(Error)
Messages(Error)
CannotConnect(String)
CannotRead(Error)
Trait Implementations§
Source§impl Debug for TableError
impl Debug 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