mirror of
https://github.com/fafhrd91/actix-web
synced 2024-11-24 00:21:08 +01:00
make mut api private
This commit is contained in:
parent
9d114d785e
commit
daed502ee5
@ -265,7 +265,7 @@ impl<S> HttpRequest<S> {
|
||||
///
|
||||
///This is intended to be used by middleware.
|
||||
#[inline]
|
||||
pub fn headers_mut(&mut self) -> &mut HeaderMap {
|
||||
pub(crate) fn headers_mut(&mut self) -> &mut HeaderMap {
|
||||
&mut self.as_mut().headers
|
||||
}
|
||||
|
||||
@ -450,7 +450,7 @@ impl<S> HttpRequest<S> {
|
||||
|
||||
/// Get mutable reference to request's Params.
|
||||
#[inline]
|
||||
pub fn match_info_mut(&mut self) -> &mut Params {
|
||||
pub(crate) fn match_info_mut(&mut self) -> &mut Params {
|
||||
unsafe { mem::transmute(&mut self.as_mut().params) }
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user