pub struct BoxDict<'a>(/* private fields */);Expand description
This is a runtime generated, owned Dict with string slices out of some backing store.
These slices may come from a Vec<String>, or else from slices out of a single String.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for BoxDict<'a>
impl<'a> RefUnwindSafe for BoxDict<'a>
impl<'a> Send for BoxDict<'a>
impl<'a> Sync for BoxDict<'a>
impl<'a> Unpin for BoxDict<'a>
impl<'a> UnsafeUnpin for BoxDict<'a>
impl<'a> UnwindSafe for BoxDict<'a>
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