1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
error_chain! {
    links {
        //Reqwest(reqwest::Error, reqwest::ErrorKind);
        //Req(reqwest::Error, reqwest::Error::Kind) #[cfg(unix)];
    }

    foreign_links {
        Reqwest(::reqwest::Error);
        ParseFloat(::std::num::ParseFloatError);
    }
}