actix_tower 0.1.1

Modern extensions for Actix Web — Tower compatibility, ergonomic extractors, and production-ready middleware.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Utility functions, types, and traits.

pub mod builder;
pub mod error;
pub mod extensions;
pub mod response;
pub mod validation;

pub use builder::{AppBuilder, ServiceConfigBuilder};
pub use error::{ApiError, ApiErrorResponse, ErrorCode};
pub use extensions::RequestExt;
pub use response::{ApiResponse, TypedResponse};
pub use validation::{in_range, is_email, not_empty, Validator};