pub struct BytesMap { /* private fields */ }
Expand description
A map from 0 .. something
to Option<&[u8]>
.
Non-empty slices are pushed in order, and can be retrieved by index.
Pushing an empty slice is equivalent to pushing None
.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BytesMap
impl RefUnwindSafe for BytesMap
impl Send for BytesMap
impl Sync for BytesMap
impl Unpin for BytesMap
impl UnwindSafe for BytesMap
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