Struct dashmap::ReadOnlyView

source ·
pub struct ReadOnlyView<K, V, S = RandomState> { /* private fields */ }
Expand description

A read-only view into a DashMap. Allows to obtain raw references to the stored values.

Implementations§

source§

impl<K, V, S> ReadOnlyView<K, V, S>

source

pub fn into_inner(self) -> DashMap<K, V, S>

Consumes this ReadOnlyView, returning the underlying DashMap.

source§

impl<'a, K: 'a + Eq + Hash, V: 'a, S: BuildHasher + Clone> ReadOnlyView<K, V, S>

source

pub fn len(&self) -> usize

Returns the number of elements in the map.

source

pub fn is_empty(&self) -> bool

Returns true if the map contains no elements.

source

pub fn capacity(&self) -> usize

Returns the number of elements the map can hold without reallocating.

source

pub fn contains_key<Q>(&'a self, key: &Q) -> boolwhere K: Borrow<Q>, Q: Hash + Eq + ?Sized,

Returns true if the map contains a value for the specified key.

source

pub fn get<Q>(&'a self, key: &Q) -> Option<&'a V>where K: Borrow<Q>, Q: Hash + Eq + ?Sized,

Returns a reference to the value corresponding to the key.

source

pub fn get_key_value<Q>(&'a self, key: &Q) -> Option<(&'a K, &'a V)>where K: Borrow<Q>, Q: Hash + Eq + ?Sized,

Returns the key-value pair corresponding to the supplied key.

source

pub fn iter(&'a self) -> impl Iterator<Item = (&'a K, &'a V)> + 'a

An iterator visiting all key-value pairs in arbitrary order. The iterator element type is (&'a K, &'a V).

source

pub fn keys(&'a self) -> impl Iterator<Item = &'a K> + 'a

An iterator visiting all keys in arbitrary order. The iterator element type is &'a K.

source

pub fn values(&'a self) -> impl Iterator<Item = &'a V> + 'a

An iterator visiting all values in arbitrary order. The iterator element type is &'a V.

source

pub fn shards(&self) -> &[RwLock<HashMap<K, SharedValue<V>, S>>]

Allows you to peek at the inner shards that store your data. You should probably not use this unless you know what you are doing.

Requires the raw-api feature to be enabled.

Examples
use dashmap::DashMap;

let map = DashMap::<(), ()>::new().into_read_only();
println!("Amount of shards: {}", map.shards().len());

Trait Implementations§

source§

impl<K: Eq + Hash + Clone, V: Clone, S: Clone> Clone for ReadOnlyView<K, V, S>

source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<K: Eq + Hash + Debug, V: Debug, S: BuildHasher + Clone> Debug for ReadOnlyView<K, V, S>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'a, K, V, S> IntoParallelIterator for &'a ReadOnlyView<K, V, S>where K: Send + Sync + Eq + Hash, V: Send + Sync, S: Send + Sync + Clone + BuildHasher,

§

type Iter = Iter<'a, K, V, S>

The parallel iterator type that will be created.
§

type Item = RefMulti<'a, K, V, S>

The type of item that the parallel iterator will produce.
source§

fn into_par_iter(self) -> Self::Iter

Converts self into a parallel iterator. Read more
source§

impl<K, V, S> IntoParallelIterator for ReadOnlyView<K, V, S>where K: Send + Eq + Hash, V: Send, S: Send + Clone + BuildHasher,

§

type Iter = OwningIter<K, V, S>

The parallel iterator type that will be created.
§

type Item = (K, V)

The type of item that the parallel iterator will produce.
source§

fn into_par_iter(self) -> Self::Iter

Converts self into a parallel iterator. Read more

Auto Trait Implementations§

§

impl<K, V, S = RandomState> !RefUnwindSafe for ReadOnlyView<K, V, S>

§

impl<K, V, S> Send for ReadOnlyView<K, V, S>where K: Send, S: Send, V: Send,

§

impl<K, V, S> Sync for ReadOnlyView<K, V, S>where K: Send + Sync, S: Send + Sync, V: Send + Sync,

§

impl<K, V, S> Unpin for ReadOnlyView<K, V, S>where S: Unpin,

§

impl<K, V, S> UnwindSafe for ReadOnlyView<K, V, S>where K: UnwindSafe, S: UnwindSafe, V: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<'data, I> IntoParallelRefIterator<'data> for Iwhere I: 'data + ?Sized, &'data I: IntoParallelIterator,

§

type Iter = <&'data I as IntoParallelIterator>::Iter

The type of the parallel iterator that will be returned.
§

type Item = <&'data I as IntoParallelIterator>::Item

The type of item that the parallel iterator will produce. This will typically be an &'data T reference type.
source§

fn par_iter(&'data self) -> <I as IntoParallelRefIterator<'data>>::Iter

Converts self into a parallel iterator. Read more
§

impl<T> Pointable for T

§

const ALIGN: usize = mem::align_of::<T>()

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.