[][src]Struct lightspeed_cms::repository::pg::pg_content::PgContentRepository

pub struct PgContentRepository { /* fields omitted */ }

Implementations

impl PgContentRepository[src]

pub fn new(table_name: &str) -> Self[src]

Methods from Deref<Target = PgC3p0Json<ContentData, DefaultJsonCodec>>

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 PgContentRepository[src]

impl ContentRepository for PgContentRepository[src]

type Conn = PgConnection

impl Deref for PgContentRepository[src]

type Target = PgC3p0Json<ContentData, DefaultJsonCodec>

The resulting type after dereferencing.

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