bui-backend 0.2.0

Brower User Interfaces (BUIs) with Tokio
Documentation
1
2
3
4
5
6
7
8
9
//! Error and result types.
error_chain! {
    types {
        Error, ErrorKind, ResultExt, Result;
    }
    foreign_links {
        HyperError(::hyper::Error) #[doc = "A Hyper error."];
    }
}