pub trait PaginatorTrait<T>where
T: Serialize,{
// Provided methods
fn paginate(&self) -> PaginatorResponse<T> { ... }
fn paginate_json(&self) -> Value { ... }
}pub trait PaginatorTrait<T>where
T: Serialize,{
// Provided methods
fn paginate(&self) -> PaginatorResponse<T> { ... }
fn paginate_json(&self) -> Value { ... }
}