Overview
Everylist() / deadlines() / query() call returns a Page<T>. The iter() / iter_deadlines() methods return a lazy Stream<T> that auto-paginates across all pages.
The Page<T> Object
PageMeta fields
Manual Pagination
Automatic Pagination with iter()
iter() returns a Stream — it fetches the next page only when the current page is exhausted. Use Box::pin to make it Unpin for .next().await:
