[][src]Struct g1_sqlite_connection::SqliteConnection

pub struct SqliteConnection { /* fields omitted */ }

A G1 connection based on an SQLite database, using the FS for blobs.

TODO: Make this not use g1_common::naive_solve...

Methods

impl SqliteConnection[src]

pub async fn open(path: PathBuf) -> Result<SqliteConnection, SqliteError>[src]

Opens a connection to the database, given a directory to store the database and blobs in.

Trait Implementations

impl Debug for SqliteConnection[src]

impl Connection for SqliteConnection[src]

type Error = SqliteError

The error returned by operations on this connection.

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, 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