pub struct WeakMapRef<K: Ord + Clone, V: Clone, const SIZE: usize>(/* private fields */);
Expand description
A weak reference to a map.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<K, V, const SIZE: usize> Freeze for WeakMapRef<K, V, SIZE>
impl<K, V, const SIZE: usize> RefUnwindSafe for WeakMapRef<K, V, SIZE>where
K: RefUnwindSafe,
V: RefUnwindSafe,
impl<K, V, const SIZE: usize> Send for WeakMapRef<K, V, SIZE>
impl<K, V, const SIZE: usize> Sync for WeakMapRef<K, V, SIZE>
impl<K, V, const SIZE: usize> Unpin for WeakMapRef<K, V, SIZE>
impl<K, V, const SIZE: usize> UnwindSafe for WeakMapRef<K, V, SIZE>where
K: RefUnwindSafe,
V: 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