pub struct ObjectIdMap<V> { /* private fields */ }
Expand description
A map for associating data with object ids in a thread-safe fashion. It should scale well up to 256 threads.
Implementations§
source§impl<V> ObjectIdMap<V>
impl<V> ObjectIdMap<V>
access and modifications - we only implement what’s used within the gix-*
ecosystem.
Trait Implementations§
Auto Trait Implementations§
impl<V> !Freeze for ObjectIdMap<V>
impl<V> !RefUnwindSafe for ObjectIdMap<V>
impl<V> Send for ObjectIdMap<V>where
V: Send,
impl<V> Sync for ObjectIdMap<V>where
V: Send,
impl<V> Unpin for ObjectIdMap<V>where
V: Unpin,
impl<V> UnwindSafe for ObjectIdMap<V>where
V: 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