1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
//! Pagination utilities with both lazy iteration and vector collection support.
//!
//! This module provides two ways to work with paginated API responses:
//! 1. **Lazy iteration** using `iter_*` functions - memory efficient, items are fetched on-demand
//! 2. **Vector collection** using `paginate_*` functions - collects all items into a Vec
//!
//! # Generic Framework
//!
//! The `base` module provides a trait-based generic pagination framework.
//! New resource types can implement the `Paginatable` trait to get
//! automatic pagination support.
//!
//! # Simple Iteration APIs
//!
//! The main APIs provide simple, clean interfaces for iterating over jobs, files, events, results, user data, resource requirements, and workflows:
//!
// Re-export all parameter types and iterator types and functions
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;