expose http::Extensions in Response (#1476)

This commit is contained in:
Mohamed Daahir
2022-03-14 18:21:57 +00:00
committed by GitHub
parent ee57777d42
commit 6dbac11d39
2 changed files with 20 additions and 0 deletions

View File

@@ -122,6 +122,16 @@ impl Response {
.map(|info| info.remote_addr())
}
/// Returns a reference to the associated extensions.
pub fn extensions(&self) -> &http::Extensions {
&self.extensions
}
/// Returns a mutable reference to the associated extensions.
pub fn extensions_mut(&mut self) -> &mut http::Extensions {
&mut self.extensions
}
// body methods
/// Get the full response text.