Struct deduped_dashmap::MapValue
source · [−]pub(crate) struct MapValue<V> {
pub(crate) value: V,
pub(crate) refcount: usize,
}
Expand description
The second layer of the map, a reference counted value.
Fields
value: V
The stored value.
refcount: usize
The number of pointers that are referring to this storage item.
Trait Implementations
Auto Trait Implementations
impl<V> RefUnwindSafe for MapValue<V> where
V: RefUnwindSafe,
impl<V> Send for MapValue<V> where
V: Send,
impl<V> Sync for MapValue<V> where
V: Sync,
impl<V> Unpin for MapValue<V> where
V: Unpin,
impl<V> UnwindSafe for MapValue<V> where
V: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more