tosic-http 0.0.3

A basic but powerful HTTP server implementation based on `actix-web`
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Prelude re-exports of the most used traits and types from the crate.

pub use tosic_http_macro::*;

pub use crate::body::BoxBody;
pub use crate::error::{Error, ResponseError, ServerError};
pub use crate::extractors::*;
#[cfg(feature = "utils")]
pub use crate::futures::*;
pub use crate::middleware::compression::*;
pub use crate::request::*;
pub use crate::response::*;
pub use crate::server::HttpServer;
pub use crate::services::HttpService;
pub use crate::traits::*;
pub use http::HeaderMap;
pub use http::Method;