1 use thiserror::Error; 2 3 #[derive(Error, Debug)] 4 pub enum Error { 5 What { 6 #[error("...")] 7 io: std::io::Error, 8 }, 9 } 10 main()11 fn main() {} 12