pub enum SqliteObjsError {
Sqlite(i32),
InvalidConfig(String),
RegistrationFailed(String),
}Expand description
Error type for sqlite-objs operations.
Variants§
Sqlite(i32)
SQLite returned an error code
InvalidConfig(String)
Invalid configuration (e.g., null bytes in strings)
RegistrationFailed(String)
VFS registration failed
Trait Implementations§
Source§impl Debug for SqliteObjsError
impl Debug for SqliteObjsError
Source§impl Display for SqliteObjsError
impl Display for SqliteObjsError
Source§impl Error for SqliteObjsError
impl Error for SqliteObjsError
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 SqliteObjsError
impl RefUnwindSafe for SqliteObjsError
impl Send for SqliteObjsError
impl Sync for SqliteObjsError
impl Unpin for SqliteObjsError
impl UnsafeUnpin for SqliteObjsError
impl UnwindSafe for SqliteObjsError
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