pub trait PagingIter {
type Item;
// Required methods
fn next_page(&self) -> Option<&String>;
fn prev_page(&self) -> Option<&String>;
}
pub trait PagingIter {
type Item;
// Required methods
fn next_page(&self) -> Option<&String>;
fn prev_page(&self) -> Option<&String>;
}