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