pub type Result<T> = Result<T, DEError>;
A specialized Result type for DE operations.
Result
pub enum Result<T> { Ok(T), Err(DEError), }
Contains the success value
Contains the error value