pub trait OffsetPaginationRequest: Request {
type Item;
// Required methods
fn set_offset(&mut self, offset: u64);
fn set_limit(&mut self, limit: u8);
}Expand description
Request that can be paginated via offset.
Required Associated Types§
Required Methods§
Sourcefn set_offset(&mut self, offset: u64)
fn set_offset(&mut self, offset: u64)
Sets the offset field of the request.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".