pub type GETResult = Result<Request<()>>;
enum GETResult { Ok(Request<()>), Err(Error), }
Contains the success value
Contains the error value