1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
use std::{ error::Error, fmt::{self, Display}, }; #[derive(Debug)] pub struct EvalError(pub String); impl Error for EvalError {} impl Display for EvalError { fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { write!(f, "{}", self.0) } }