rama-http-backend 0.2.0

error types and utilities for rama
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Rama HTTP server module,
//! which provides the [`HttpServer`] type to serve HTTP requests.

/// Result type of [`HttpServer::serve`].
pub type HttpServeResult = Result<(), rama_core::error::BoxError>;

pub mod service;
pub use service::HttpServer;

mod hyper_conn;

pub mod layer;