pub trait Pageable {
// Provided method
fn use_keyset_pagination(&self) -> bool { ... }
}Expand description
A trait to indicate that an endpoint is pageable.
Provided Methods§
Sourcefn use_keyset_pagination(&self) -> bool
fn use_keyset_pagination(&self) -> bool
Whether the endpoint uses keyset pagination or not.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".