pub enum SQLiteError {
Memory(JsValue),
Module(JsValue),
Serde(Error),
}
Expand description
Possible errors in initializing sqlite
Variants§
Memory(JsValue)
the wrong range is configured
Module(JsValue)
error in initializing module
Serde(Error)
serialization and deserialization errors
Trait Implementations§
Source§impl Debug for SQLiteError
impl Debug for SQLiteError
Source§impl Display for SQLiteError
impl Display for SQLiteError
Source§impl Error for SQLiteError
impl Error for SQLiteError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for SQLiteError
impl RefUnwindSafe for SQLiteError
impl !Send for SQLiteError
impl !Sync for SQLiteError
impl Unpin for SQLiteError
impl UnwindSafe for SQLiteError
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