pub trait BlockingPage: 'static { fn next(&mut self) -> Result<Option<Vec<Entry>>>; }
BlockingPage is the blocking version of Page.
Page
Fetch a new page of Entry
Entry
Ok(None) means all pages have been returned. Any following call to next will always get the same result.
Ok(None)
next