Struct coap_handler::helpers::MaskingUriUpToPath
source · [−]pub struct MaskingUriUpToPath<'m, M: ReadableMessage>(pub &'m M);👎 Deprecated
Expand description
Wrapper around a ReadableMessage that hides the Uri-Host and Uri-Path options from view
This is used by a [HandlerBuilder] (in particular, its path-based [ForkingHandler]) to free the resources from the strange duty of skipping over a critical option they are unaware of.
Tuple Fields
0: &'m M👎 Deprecated
Trait 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 = M::MessageOption
type MessageOption = M::MessageOption
Type of an individual option, indiciating its option number and value
type OptionsIter = MaskingUriUpToPathIter<M::OptionsIter>
type OptionsIter = MaskingUriUpToPathIter<M::OptionsIter>
See options
sourcefn options<'a>(&'a self) -> Self::OptionsIter
fn options<'a>(&'a 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 · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more