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