[][src]Struct lightspeed_auth::repository::pg::pg_token::PgTokenRepository

pub struct PgTokenRepository { /* fields omitted */ }

Methods from Deref<Target = PgC3p0Json<TokenData, TokenDataCodec>>

pub fn queries(&self) -> &Queries

pub fn to_model(
    &self,
    row: &Row
) -> Result<Model<DATA>, Box<dyn Error + 'static>>

pub async fn fetch_one_optional_with_sql(
    &'_ self,
    conn: &'_ mut PgConnection,
    sql: &'_ str,
    params: &'_ [&'_ (dyn ToSql + '_ + Sync)]
) -> Result<Option<Model<DATA>>, C3p0Error>

Allows the execution of a custom sql query and returns the first entry in the result set. For this to work, the sql query:

  • must be a SELECT
  • must declare the ID, VERSION and DATA fields in this exact order

pub async fn fetch_one_with_sql(
    &'_ self,
    conn: &'_ mut PgConnection,
    sql: &'_ str,
    params: &'_ [&'_ (dyn ToSql + '_ + Sync)]
) -> Result<Model<DATA>, C3p0Error>

Allows the execution of a custom sql query and returns the first entry in the result set. For this to work, the sql query:

  • must be a SELECT
  • must declare the ID, VERSION and DATA fields in this exact order

pub async fn fetch_all_with_sql(
    &'_ self,
    conn: &'_ mut PgConnection,
    sql: &'_ str,
    params: &'_ [&'_ (dyn ToSql + '_ + Sync)]
) -> Result<Vec<Model<DATA>>, C3p0Error>

Allows the execution of a custom sql query and returns all the entries in the result set. For this to work, the sql query:

  • must be a SELECT
  • must declare the ID, VERSION and DATA fields in this exact order

Trait Implementations

impl Clone for PgTokenRepository[src]

impl Default for PgTokenRepository[src]

impl Deref for PgTokenRepository[src]

type Target = PgC3p0Json<TokenData, TokenDataCodec>

The resulting type after dereferencing.

impl TokenRepository for PgTokenRepository[src]

type Conn = PgConnection

Auto Trait Implementations

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, U> Into<U> for T where
    U: From<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>,