Trait CursorTrait

pub trait CursorTrait {
    type Selector: SelectorTrait + Send + Sync;
}
Expand description

A trait for any type that can be turn into a cursor

Required Associated Types§

type Selector: SelectorTrait + Send + Sync

Select operation

Implementors§

§

impl<E, F, G, M, N, O> CursorTrait for SelectThree<E, F, G>
where E: EntityTrait<Model = M>, F: EntityTrait<Model = N>, G: EntityTrait<Model = O>, M: FromQueryResult + Send + Sync, N: FromQueryResult + Send + Sync, O: FromQueryResult + Send + Sync,

§

impl<E, F, M, N> CursorTrait for SelectTwo<E, F>
where E: EntityTrait<Model = M>, F: EntityTrait<Model = N>, M: FromQueryResult + Send + Sync, N: FromQueryResult + Send + Sync,

§

impl<E, M> CursorTrait for Select<E>
where E: EntityTrait<Model = M>, M: FromQueryResult + Send + Sync,