D14nCombinatorExt

Trait D14nCombinatorExt 

Source
pub trait D14nCombinatorExt<S>: Endpoint<S> {
    // Provided method
    fn ordered<R, Store>(
        self,
        resolver: R,
        topic_cursor: TopicCursor,
        store: Store,
    ) -> OrderedQuery<Self, R, <Self as Endpoint<S>>::Output, Store>
       where Self: Sized + Endpoint<S>,
             <Self as Endpoint<S>>::Output: Paged,
             R: ResolveDependencies,
             Store: CursorStore { ... }
}

Provided Methods§

Source

fn ordered<R, Store>( self, resolver: R, topic_cursor: TopicCursor, store: Store, ) -> OrderedQuery<Self, R, <Self as Endpoint<S>>::Output, Store>
where Self: Sized + Endpoint<S>, <Self as Endpoint<S>>::Output: Paged, R: ResolveDependencies, Store: CursorStore,

Implementors§

Source§

impl<S, E> D14nCombinatorExt<S> for E
where E: Endpoint<S>,