motorx-core 0.0.5

Build your own motorx binary.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use thiserror::Error;

#[derive(Debug, Error)]
pub enum Error {
    #[error("Io error: {0:?}")]
    Io(#[from] std::io::Error),
    #[error("Hyper error: {0:?}")]
    Hyper(#[from] hyper::Error),
    #[cfg(feature = "tls")]
    #[error("Rustls error: {0:?}")]
    Rustls(#[from] rustls::Error),
}