pub struct MaskingUriUpToPath<'m, M: ReadableMessage>(pub &'m M);
Expand description
Wrapper around a ReadableMessage that hides the Uri-Host and Uri-Path options from view
This is used by a crate::HandlerBuilder (in particular, its path-based crate::ForkingHandler) to free the resources from the strange duty of skipping over a critical option they are unaware of.
Tuple Fields
0: &'m M
Trait Implementations
sourceimpl<'m, M: ReadableMessage> ReadableMessage for MaskingUriUpToPath<'m, M>
impl<'m, M: ReadableMessage> ReadableMessage for MaskingUriUpToPath<'m, M>
type Code = <M as ReadableMessage>::Code
type Code = <M as ReadableMessage>::Code
See code; also used with MinimalWritableMessage::set_code()
type MessageOption<'a>
where
Self: 'a = <M as ReadableMessage>::MessageOption<'a>
type MessageOption<'a>
where
Self: 'a = <M as ReadableMessage>::MessageOption<'a>
Type of an individual option, indiciating its option number and value
type OptionsIter<'a>
where
Self: 'a = MaskingUriUpToPathIter<<M as ReadableMessage>::OptionsIter<'a>>
type OptionsIter<'a>
where
Self: 'a = MaskingUriUpToPathIter<<M as ReadableMessage>::OptionsIter<'a>>
See options
sourcefn options(&self) -> Self::OptionsIter<'_>
fn options(&self) -> Self::OptionsIter<'_>
Produce all options in arbitrary order as an iterator Read more
Auto Trait Implementations
impl<'m, M> RefUnwindSafe for MaskingUriUpToPath<'m, M>where
M: RefUnwindSafe,
impl<'m, M> Send for MaskingUriUpToPath<'m, M>where
M: Sync,
impl<'m, M> Sync for MaskingUriUpToPath<'m, M>where
M: Sync,
impl<'m, M> Unpin for MaskingUriUpToPath<'m, M>
impl<'m, M> UnwindSafe for MaskingUriUpToPath<'m, M>where
M: RefUnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more