pub trait Paginate: Sized {
    fn page(self, page: Option<i64>) -> PaginatedQuery<Self> { ... }
    fn per_page(self, per_page: Option<i64>) -> PaginatedQuery<Self> { ... }
}

Provided Methods

Start the pagination process by setting the page number

Start the pagination process by setting the amount of items per page

Implementors