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