pub struct HashMapOwner<K, T>(/* private fields */);
Implementations§
Source§impl<K, T> HashMapOwner<K, T>
impl<K, T> HashMapOwner<K, T>
pub fn new() -> Self
Sourcepub fn child(&mut self) -> HashMapChild<'_, K, T>
pub fn child(&mut self) -> HashMapChild<'_, K, T>
Creates a HashMapChild
which will allow to interact with the HashMap.
Trait Implementations§
Auto Trait Implementations§
impl<K, T> Freeze for HashMapOwner<K, T>
impl<K, T> RefUnwindSafe for HashMapOwner<K, T>where
K: RefUnwindSafe,
T: RefUnwindSafe,
impl<K, T> Send for HashMapOwner<K, T>
impl<K, T> Sync for HashMapOwner<K, T>
impl<K, T> Unpin for HashMapOwner<K, T>
impl<K, T> UnwindSafe for HashMapOwner<K, T>where
K: UnwindSafe,
T: UnwindSafe,
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