Trait WithResponsePagination

Source
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.

Required Methods§

Provided Methods§

Source

fn limit(&self) -> Option<u32>
where Self: Sized,

Source

fn marker(&self) -> Option<&Value>
where Self: Sized,

Implementors§