sql_paginatorr 0.1.2

A simple utility for calculating offset and limits for SQL Queries
Documentation
  • Coverage
  • 14.29%
    1 out of 7 items documented0 out of 4 items with examples
  • Size
  • Source code size: 3.66 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.31 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 10s Average build duration of successful builds.
  • all releases: 10s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • tronicboy1/sql_paginatorr
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • tronicboy1

About this Crate

This is a simple utility for SQL queries to calculate the offset and limit.

Disclaimer

The author takes no responsibility for any bugs that occur from the use of this crate.

License

MIT

Usage

let LimitOffsetPair { limit, offset } = sql_paginatorr::for_page(3, 10); // 40, 30