//! Config parsing error use super::*; #[derive(Debug)] pub enum Error { } impl std::error::Error for Error{} impl std::fmt::Display for Error { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { todo!() } }