pub type MdtResult<T> = Result<T, MdtError>;
pub enum MdtResult<T> { Ok(T), Err(MdtError), }
Contains the success value
Contains the error value