We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This works and correctly paginates the request:
let request = self .client .operation(); request.into_paginator().send().collect().await
When updating that request with a customization it no longer works since the CustomizableOperation type does not contain an into_paginator function.
CustomizableOperation
into_paginator
let request = self .client .operation() .customize() .mutate_request(move |req| {...}); request.into_paginator().send().collect().await
throws:
no method named `into_paginator` found for struct `CustomizableOperation`
I would like to be able to register interceptors on paginatable requests and still have them automatically turned into a paginator.
No response
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the feature
This works and correctly paginates the request:
When updating that request with a customization it no longer works since the
CustomizableOperation
type does not contain aninto_paginator
function.throws:
Use Case
I would like to be able to register interceptors on paginatable requests and still have them automatically turned into a paginator.
Proposed Solution
No response
Other Information
No response
Acknowledgements
A note for the community
Community Note
The text was updated successfully, but these errors were encountered: