Struct hyper::client::response::ResponseExperimental
[-]
[+]
[src]
pub struct Response<S = HttpStream> {
pub status: StatusCode,
pub headers: Headers,
pub version: HttpVersion,
// some fields omitted
}A response for a client request to a remote server.
Fields
status | The status from the server. |
headers | The headers from the server. |
version | The HTTP version of this response from the server. |
Methods
impl Response
fn new(stream: Box<NetworkStream + Send>) -> HttpResult<Response>
Creates a new response from a server.