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
| Field | Type | Description |
|---|---|---|
total | u32 | Total items |
page | u32 | Current page |
per_page | u32 | Items per page |
pages | u32 | Total pages |
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:
