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