pub type Result<T> = Result<T, CnfError>;
Type alias for errors in this crate
pub enum Result<T> { Ok(T), Err(CnfError), }
Contains the success value
Contains the error value