actix-contrib-rest 0.7.0

Util types and functions for REST and webapp projects built on top of the Actix Web framework
Documentation
//! Util types and functions for REST and webapp projects built on top of
//! the [Actix Web framework](https://actix.rs/).
//!
//! It does include structs and methods to:
//!
//! - Managing errors.
//! - Properly serialize errors, with a JSON response explaining the reason.
//! - Pagination and query search structs.
//! - Basic types for managing DB connections and transactions (`sqlx-postgres` feature).
//! - Basic methods to easily deal with streams and integration tests.
//!
//! > (❗️) This project is in a very early stage.

pub mod page;
pub mod query;
pub mod response;
pub mod result;
pub mod stream;
pub mod test;

#[cfg(feature = "sqlx-postgres")]
pub mod app_state;
#[cfg(feature = "sqlx-postgres")]
pub mod db;