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