Hi,
I'm new to the library, and I saw the Pagination section of the docs. That looks awesome.
I'd like to do something similar to:
forrepoinapi.repo_search(query).stream(){
But the .stream() method isn't found. It seems that it's only present for methods that return Request<'a, E, (H, Vec<T>)>, and .repo_search() returns Request<'_, endpoints::RepoSearch, SearchResults> (no Vec).
The Forgejo endpoint does support pagination, and the Request object does accept the .page() and .page_size() methods. Is there a clever way to make this work, or do I need to iterate pages by hand?
Thanks!
Hi,
I'm new to the library, and I saw the [Pagination](https://docs.rs/forgejo-api/latest/forgejo_api/#pagination) section of the docs. That looks awesome.
I'd like to do something similar to:
```rust
for repo in api.repo_search(query).stream() {
```
But the `.stream()` method isn't found. It seems that it's only present for methods that return `Request<'a, E, (H, Vec<T>)>`, and `.repo_search()` returns `Request<'_, endpoints::RepoSearch, SearchResults>` (no `Vec`).
The Forgejo endpoint does support pagination, and the Request object does accept the `.page()` and `.page_size()` methods. Is there a clever way to make this work, or do I need to iterate pages by hand?
Thanks!