Trait sea_orm::CursorTrait

source ·
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§

source

type Selector: SelectorTrait + Send + Sync

Select operation

Implementors§

source§

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

source§

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