sea_orm

Trait 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,