Enum sqlite_rs::result::SQLiteError  
source · pub enum SQLiteError {
    TryFromSliceError(TryFromSliceError),
    StdioError(Error),
    Custom(String),
}Variants§
Implementations§
Trait Implementations§
source§impl Debug for SQLiteError
 
impl Debug for SQLiteError
source§impl From<Error> for SQLiteError
 
impl From<Error> for SQLiteError
source§fn from(io_error: StdioError) -> Self
 
fn from(io_error: StdioError) -> Self
Converts to this type from the input type.
source§impl From<String> for SQLiteError
 
impl From<String> for SQLiteError
source§impl From<TryFromSliceError> for SQLiteError
 
impl From<TryFromSliceError> for SQLiteError
source§fn from(error: TryFromSliceError) -> Self
 
fn from(error: TryFromSliceError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
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