Trait PagingIter

Source
pub trait PagingIter {
    type Item;

    // Required methods
    fn next_page(&self) -> Option<&String>;
    fn prev_page(&self) -> Option<&String>;
}

Required Associated Types§

Required Methods§

Implementors§