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 MTrait Implementations
sourceimpl<'m, M: ReadableMessage> ReadableMessage for MaskingUriUpToPath<'m, M>
impl<'m, M: ReadableMessage> ReadableMessage for MaskingUriUpToPath<'m, M>
type Code = M::Code
type Code = M::Code
See code; also used with MinimalWritableMessage::set_code()
type MessageOption<'a>
where
Self: 'a = M::MessageOption<'a>
type MessageOption<'a>
where
Self: 'a = M::MessageOption<'a>
Type of an individual option, indiciating its option number and value
type OptionsIter<'a>
where
Self: 'a = MaskingUriUpToPathIter<M::OptionsIter<'a>>
type OptionsIter<'a>
where
Self: 'a = MaskingUriUpToPathIter<M::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 T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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