pub trait Pageable {
    fn use_keyset_pagination(&self) -> bool { ... }
}
Expand description

A trait to indicate that an endpoint is pageable.

Provided Methods

Whether the endpoint uses keyset pagination or not.

Implementors