struct ContextMap<S: DecoderSession> {
map: BTreeMap<u32, Context<S>>,
}Expand description
A thin wrapper of a map of contexts with error handlings.
Fields§
§map: BTreeMap<u32, Context<S>>Implementations§
Source§impl<S: DecoderSession> ContextMap<S>
impl<S: DecoderSession> ContextMap<S>
Trait Implementations§
Source§impl<S: DecoderSession> Default for ContextMap<S>
impl<S: DecoderSession> Default for ContextMap<S>
Auto Trait Implementations§
impl<S> Freeze for ContextMap<S>
impl<S> RefUnwindSafe for ContextMap<S>where
S: RefUnwindSafe,
impl<S> Send for ContextMap<S>where
S: Send,
impl<S> Sync for ContextMap<S>where
S: Sync,
impl<S> Unpin for ContextMap<S>
impl<S> UnwindSafe for ContextMap<S>where
S: RefUnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more