[][src]Enum db_derive::conn::Pool

pub enum Pool {
    PostgreSQL(Pool<PostgresConnectionManager<NoTls>>),
    SQLite(Pool<SqliteConnectionManager>),
}

Variants

Methods

impl Pool[src]

pub fn postgres(config: Config) -> Result<Self, Error>[src]

pub fn sqlite(path: impl AsRef<Path>) -> Result<Self, Error>[src]

pub fn as_kind(&self) -> PoolKind[src]

pub fn batch_execute(&self, exec: impl AsRef<str>) -> Result<(), Error>[src]

pub fn transaction(
    &self,
    run: impl FnOnce(Transaction) -> Result<(), Error>
) -> Result<(), Error>
[src]

Trait Implementations

impl RefInto<PoolKind> for Pool[src]

impl Clone for Pool[src]

impl Debug for Pool[src]

impl<'r> TryFrom<Pool> for ConnTrans<'r>[src]

type Error = Error

The type returned in the event of a conversion error.

impl<'r> TryFrom<&'r Pool> for ConnTrans<'r>[src]

type Error = Error

The type returned in the event of a conversion error.

impl TryFrom<Pool> for Connection[src]

type Error = Error

The type returned in the event of a conversion error.

impl<'r> TryFrom<&'r Pool> for Connection[src]

type Error = Error

The type returned in the event of a conversion error.

Auto Trait Implementations

impl Send for Pool

impl Sync for Pool

impl Unpin for Pool

impl !UnwindSafe for Pool

impl !RefUnwindSafe for Pool

Blanket Implementations

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

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<T> Same<T> for T

type Output = T

Should always be Self