1
2
3
4
5
6
7
error_chain! {
    errors { Initialization UnsupportedPlatform Format Write }

    foreign_links {
        Io(::std::io::Error) #[doc = "Link to a `std::error::Error` type."];
    }
}