volo-http 0.5.5

HTTP framework implementation of volo.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Generic error types

use std::error::Error;

#[cfg(feature = "client")]
pub mod client;
#[cfg(feature = "client")]
pub use self::client::ClientError;

#[cfg(feature = "server")]
pub mod server;
#[cfg(feature = "server")]
pub use self::server::ExtractBodyError;

/// Boxed [`Error`] with [`Send`] and [`Sync`]
pub type BoxError = Box<dyn Error + Send + Sync>;