# `actix-web-pagination` Pagination extractor for [`actix-web`](https://docs.rs/actix-web). ## Example ```rust use actix_web::{App, HttpResponse, HttpServer}; use actix_web_pagination::Pagination; #[actix_web::get("/")] async fn list(page: Pagination) -> HttpResponse { println!("page: {:?}", page); HttpResponse::Ok().finish() } #[actix_web::main] async fn main() -> actix_web::Result<()> { HttpServer::new(|| { App::new() .data(Pagination::config().default_per_page(50)) .service(list) }) .bind("0.0.0.0:8080")? .run() .await?; Ok(()) } ``` ## License [Apache](LICENSE-APACHE) or [MIT](LICENSE-MIT)