logo
pub trait CursorTrait {
    type Selector: SelectorTrait + Send + Sync;

    fn cursor_by<C>(self, order_columns: C) -> Cursor<Self::Selector>
    where
        C: IntoIdentity
; }
Expand description

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

Required Associated Types

Select operation

Required Methods

Convert current type into a cursor

Implementors