pub type StringResult = FireflyResult<String>;
pub enum StringResult { Ok(String), Err(Box<dyn Error + Sync + Send>), }
Contains the success value
Contains the error value