pub type ResponseResult<B> = Result<Response<B>, ResponseError>;
HTTP 响应结果
pub enum ResponseResult<B> { Ok(Response<B>), Err(Error), }
Contains the success value
Contains the error value