sqlx-paginated 0.3.1

A flexible, type-safe SQLx query builder for dynamic web APIs, offering seamless pagination, searching, filtering, and sorting.
Documentation
1
2
3
4
5
pub trait QueryDialect {
    fn quote_identifier(&self, ident: &str) -> String;
    fn placeholder(&self, position: usize) -> String;
    fn type_cast(&self, value: &str) -> String;
}