pub type ResponseInner = Result<Option<String>, String>;
pub enum ResponseInner { Ok(Option<String>), Err(String), }
Contains the success value
Contains the error value