pub type RequestOutput = Result<Option<(String, Vec<String>)>, Error>;
The output for one of the request features.
enum RequestOutput { Ok(Option<(String, Vec<String>)>), Err(Error), }
Contains the success value
Contains the error value