sql_paginatorr 0.1.1

A simple utility for calculating offset and limits for SQL Queries
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# 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

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