1 2 3 4 5 6 7 8 9 10
//! Error types and utilities. use std::io; error_chain! { foreign_links { IO(io::Error) /// An operating system IO error ; } }