bing-rs 0.0.4

Rust bindings to the Bing API
1
2
3
4
5
6
7
8
9
10
11
12
error_chain!{
    foreign_links {
        CellBorrowMut(::std::cell::BorrowMutError);
        Hyper(::hyper::Error);
        HyperTls(::native_tls::Error) #[cfg(feature = "rust-native-tls")];
        Io(::std::io::Error);
        SerdeJson(::serde_json::Error);
        FromUtf(::std::string::FromUtf8Error);
        Url(::url::ParseError);
        Ws(::ws::Error);
    }
}