pub type DaftResult<T> = Result<T, DaftError>;
Result type for extension functions.
pub enum DaftResult<T> { Ok(T), Err(DaftError), }
Contains the success value
Contains the error value