pub trait WithRequestPagination: Request {
// Required methods
fn as_pagination(&self) -> &RequestPagination;
fn as_pagination_mut(&mut self) -> &mut RequestPagination;
// Provided methods
fn limit(self, limit: u32) -> Self
where Self: Sized { ... }
fn marker(self, marker: Value) -> Self
where Self: Sized { ... }
}
Expand description
Request that allows specifying pagination. See https://xrpl.org/markers-and-pagination.html.