1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-09-08 20:58:26 +00:00

method only for tests

This commit is contained in:
Nikolay Kim 2018-06-18 01:05:02 +06:00
parent f0f19c14d2
commit 6ec8352612

View file

@ -264,7 +264,7 @@ impl<S> HttpRequest<S> {
///Returns mutable Request's headers.
///
///This is intended to be used by middleware.
#[inline]
#[cfg(test)]
pub(crate) fn headers_mut(&mut self) -> &mut HeaderMap {
&mut self.as_mut().headers
}