pub struct MapReader<'b, 'r> { /* private fields */ }Expand description
A map<K, V> read lazily from the buffer. Entries are stored sorted by key
(canonical order), so get yields them in that order.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'b, 'r> !RefUnwindSafe for MapReader<'b, 'r>
impl<'b, 'r> !Send for MapReader<'b, 'r>
impl<'b, 'r> !Sync for MapReader<'b, 'r>
impl<'b, 'r> !UnwindSafe for MapReader<'b, 'r>
impl<'b, 'r> Freeze for MapReader<'b, 'r>
impl<'b, 'r> Unpin for MapReader<'b, 'r>
impl<'b, 'r> UnsafeUnpin for MapReader<'b, 'r>
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