pub trait QueryContext {
type Model: QueryModel;
type Query: QueryQuery;
type Sort: QuerySort;
type Join: SqlJoin;
const TABLE: &'static str;
}Required Associated Constants§
Required Associated Types§
type Model: QueryModel
type Query: QueryQuery
type Sort: QuerySort
type Join: SqlJoin
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.