| Crates.io | sql_paginatorr |
| lib.rs | sql_paginatorr |
| version | 0.1.2 |
| created_at | 2023-08-22 07:40:42.550582+00 |
| updated_at | 2023-08-28 09:20:52.65848+00 |
| description | A simple utility for calculating offset and limits for SQL Queries |
| homepage | |
| repository | https://github.com/tronicboy1/sql_paginatorr |
| max_upload_size | |
| id | 950777 |
| size | 3,984 |
This is a simple utility for SQL queries to calculate the offset and limit.
The author takes no responsibility for any bugs that occur from the use of this crate.
MIT
let LimitOffsetPair { limit, offset } = sql_paginatorr::for_page(3, 10); // 40, 30