use std::{error, fmt}; #[derive(Debug)] pub enum Error {} impl fmt::Display for Error { fn fmt(&self, _f: &mut fmt::Formatter) -> fmt::Result { todo!() } } impl error::Error for Error {}