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