1 2 3 4 5 6 7 8 9
use crate::ErrorResult; use std::fmt::{Display, Formatter, Error}; impl Display for ErrorResult { fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error> { write!(f, "{}", self.msg) } }