pub enum SqlReadError {
Prepare(SqlitePrepareErrors),
}Variants§
Prepare(SqlitePrepareErrors)
Trait Implementations§
Source§impl Debug for SqlReadError
impl Debug for SqlReadError
Source§impl Display for SqlReadError
impl Display for SqlReadError
Source§impl Error for SqlReadError
impl Error for SqlReadError
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()
Source§impl From<SqlReadError> for Error
impl From<SqlReadError> for Error
Source§fn from(source: SqlReadError) -> Error
fn from(source: SqlReadError) -> Error
Converts to this type from the input type.
Source§impl From<SqlitePrepareErrors> for SqlReadError
impl From<SqlitePrepareErrors> for SqlReadError
Source§fn from(source: SqlitePrepareErrors) -> SqlReadError
fn from(source: SqlitePrepareErrors) -> SqlReadError
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SqlReadError
impl RefUnwindSafe for SqlReadError
impl Send for SqlReadError
impl Sync for SqlReadError
impl Unpin for SqlReadError
impl UnsafeUnpin for SqlReadError
impl UnwindSafe for SqlReadError
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