CursorTrait

Trait CursorTrait 

Source
pub trait CursorTrait {
    type Selector: SelectorTrait;
}
Expand description

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

Required Associated Types§

Source

type Selector: SelectorTrait

Select operation

Implementors§

Source§

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

Source§

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

Source§

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