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