1 use thiserror::Error; 2 3 #[derive(Debug)] 4 pub struct NotError; 5 6 #[derive(Error, Debug)] 7 #[error("...")] 8 pub enum ErrorEnum { 9 Broken { 10 source: NotError, 11 }, 12 } 13 main()14 fn main() {} 15