stratum-server 5.7.5

The server code for the Rust Stratum implementation
Documentation
1
2
3
4
5
6
7
8
9
#[derive(thiserror::Error, Debug)]
pub enum Error {
    #[error(transparent)]
    Hyper(#[from] hyper::Error),
    #[error(transparent)]
    AddrParse(#[from] std::net::AddrParseError),
    #[error(transparent)]
    Io(#[from] std::io::Error),
}