pub type Response<Resp> = Result<Resp, ResponseError>;
enum Response<Resp> { Ok(Resp), Err(ResponseError), }
Contains the success value
Contains the error value