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 { ... }
}