Trait proxer::PageableEndpoint [] [src]

pub trait PageableEndpoint where
    Self: Endpoint + Sized,
    Self::ResponseType: IntoIterator + Clone,
    <Self::ResponseType as IntoIterator>::Item: Clone + Debug
{ fn pager(self, client: Client) -> Pager<Self>;
fn page_mut(&mut self) -> &mut Option<usize>;
fn limit_mut(&mut self) -> &mut Option<usize>; }

Required Methods

Implementors