pub trait PaginatedQuery {
    fn limit(&self) -> i32;
    fn offset(&self) -> i32;
}

Required Methods

Implementors