pub trait WithResponsePagination {
// Required method
fn as_pagination(&self) -> &ResponsePagination;
// Provided methods
fn limit(&self) -> Option<u32>
where Self: Sized { ... }
fn marker(&self) -> Option<&Value>
where Self: Sized { ... }
}
Expand description
Response that allows specifying pagination. See https://xrpl.org/markers-and-pagination.html.