conduit-hyper 0.4.2

Host a conduit based web application on a hyper server
Documentation
1
2
3
4
5
6
7
8
9
use tokio::task::JoinError;

#[derive(Debug, thiserror::Error)]
pub enum ServiceError {
    #[error(transparent)]
    JoinError(#[from] JoinError),
    #[error(transparent)]
    Hyper(#[from] hyper::Error),
}