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