pub type PaginatedStream<'a, T> = Pin<Box<dyn Stream<Item = Result<T, Error>> + Send + Sync + 'a>>;
Expand description
A stream of paginated results from freedom.
Each item in the stream is a result, since one or more items may fail to be serialized
Aliased Typeยง
struct PaginatedStream<'a, T> { /* private fields */ }