pub trait QueryExt: Query {
// Provided methods
fn start<M>(self) -> StartQuery<Self, M> { ... }
fn enriching<A>(self) -> ChainQuery<Self, A>
where Self: QueryChain,
Self::Original: QueryEnrich<A> { ... }
}pub trait QueryExt: Query {
// Provided methods
fn start<M>(self) -> StartQuery<Self, M> { ... }
fn enriching<A>(self) -> ChainQuery<Self, A>
where Self: QueryChain,
Self::Original: QueryEnrich<A> { ... }
}