Merge pull request #130 from reem/move-deconstruct

refactor(response): made deconstruct available on all response types.
This commit is contained in:
Sean McArthur
2014-11-20 09:27:21 -08:00

View File

@@ -47,6 +47,12 @@ impl<W> Response<W> {
headers: headers
}
}
/// Deconstruct this Response into its constituent parts.
pub fn deconstruct(self) -> (version::HttpVersion, HttpWriter<BufferedWriter<Box<NetworkStream + Send>>>,
status::StatusCode, header::Headers) {
(self.version, self.body, self.status, self.headers)
}
}
impl Response<Fresh> {
@@ -125,12 +131,6 @@ impl Response<Fresh> {
/// Get a mutable reference to the Headers.
pub fn headers_mut(&mut self) -> &mut header::Headers { &mut self.headers }
/// Deconstruct this Response into its constituent parts.
pub fn deconstruct(self) -> (version::HttpVersion, HttpWriter<BufferedWriter<Box<NetworkStream + Send>>>,
status::StatusCode, header::Headers) {
(self.version, self.body, self.status, self.headers)
}
}
impl Response<Streaming> {