1 2 3 4 5 6 7 8 9
//! Cursor based pagination for SQLx.
//!
//! It is built around [sqlx::QueryBuilder], and has the same security level.
//!
//! See [Page] for the API, and the examples directory in the Git repository for an example.
mod lib_page;
pub use lib_page::Page;