[][src]Enum g1_sqlite_connection::SqliteError

pub enum SqliteError {
    IO(Error),
    InvalidQuery(String),
    SQLite(Error),
    SQLitePanic,
}

An error performing an operation on an SqliteConnection.

Variants

IO(Error)

An I/O error occurred.

InvalidQuery(String)

A query was invalid.

This could be the result of a syntax error, or a non-stratifiable query.

SQLite(Error)

An error from SQLite.

SQLitePanic

The SQLite thread panicked.

Trait Implementations

impl From<Error> for SqliteError[src]

impl From<Error> for SqliteError[src]

impl Debug for SqliteError[src]

impl Display for SqliteError[src]

impl Error for SqliteError[src]

impl Error for SqliteError[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = !

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> Same<T> for T

type Output = T

Should always be Self