[][src]Trait gluon_salsa::QueryDb

pub trait QueryDb<'d>: QueryBase {
    type DynDb: ?Sized + Database + HasQueryGroup<Self::Group> + 'd;
    type Db: Deref<Target = Self::DynDb> + AsAsyncDatabase<Self::DynDb>;
}

Trait implements by all of the "special types" associated with each of your queries.

Base trait of Query that has a lifetime parameter to allow the DynDb to be non-'static.

Associated Types

type DynDb: ?Sized + Database + HasQueryGroup<Self::Group> + 'd

Dyn version of the associated trait for this query group.

type Db: Deref<Target = Self::DynDb> + AsAsyncDatabase<Self::DynDb>

Sized version of DynDb, &'d Self::DynDb for synchronous queries

Loading content...

Implementors

Loading content...