[][src]Struct rego::infra::postgres::Postgres

pub struct Postgres { /* fields omitted */ }

Implementations

impl Postgres[src]

pub fn new(url: impl Into<String>) -> Result<Postgres, PoolError>[src]

pub fn with_builder(
    url: impl Into<String>,
    build_func: impl FnOnce(Builder<Manager>) -> Builder<Manager>
) -> Result<Postgres, PoolError>
[src]

pub async fn with_conn<T, F, '_>(&'_ self, func: F) -> Result<T, Error> where
    F: FnOnce(Connection) -> T + Send + 'static,
    T: Send + 'static, 
[src]

pub async fn try_with_conn<T, F, '_>(&'_ self, func: F) -> Result<T, Error> where
    F: FnOnce(Connection) -> Result<T, Error> + Send + 'static,
    T: Send + 'static, 
[src]

pub async fn transaction<T, F, '_>(&'_ self, func: F) -> Result<T, Error> where
    F: FnOnce(&'a Connection) -> Result<T, Error> + Send + 'static,
    T: Send + 'static, 
[src]

Trait Implementations

impl Clone for Postgres[src]

Auto Trait Implementations

impl !RefUnwindSafe for Postgres

impl Send for Postgres

impl Sync for Postgres

impl Unpin for Postgres

impl !UnwindSafe for Postgres

Blanket Implementations

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

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

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

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

impl<T> Instrument for T[src]

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

impl<T> IntoSql for T[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

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<V, T> VZip<V> for T where
    V: MultiLane<T>,