pub trait ServiceExt<R, T>: Service<R> {
// Provided method
fn paginate(self, request: R) -> PaginationStream<Self, T, R>
where T: Clone,
R: Request<Response = <Self as Service<R>>::Response> + PaginatedRequest<PaginationData = T>,
Self: Sized { ... }
}Provided Methods§
fn paginate(self, request: R) -> PaginationStream<Self, T, R>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".