pub struct ReadOnlyView<'a, K, V, S = RandomState> { /* private fields */ }Implementations§
Source§impl<'a, K, V, S> ReadOnlyView<'a, K, V, S>
impl<'a, K, V, S> ReadOnlyView<'a, K, V, S>
Source§impl<K, V, S> ReadOnlyView<'_, K, V, S>
impl<K, V, S> ReadOnlyView<'_, K, V, S>
Source§impl<K, V, S> ReadOnlyView<'_, K, V, S>
impl<K, V, S> ReadOnlyView<'_, K, V, S>
pub fn par_iter(&self) -> impl ParallelIterator<Item = (&K, &V)>
Available on crate feature
rayon only.pub fn par_keys(&self) -> impl ParallelIterator<Item = &K>
Available on crate feature
rayon only.pub fn par_values(&self) -> impl ParallelIterator<Item = &V>
Available on crate feature
rayon only.Trait Implementations§
Source§impl<K, V, S> Debug for ReadOnlyView<'_, K, V, S>
impl<K, V, S> Debug for ReadOnlyView<'_, K, V, S>
Source§impl<K, V, S> Drop for ReadOnlyView<'_, K, V, S>
impl<K, V, S> Drop for ReadOnlyView<'_, K, V, S>
Auto Trait Implementations§
impl<'a, K, V, S> Freeze for ReadOnlyView<'a, K, V, S>
impl<'a, K, V, S = RandomState> !RefUnwindSafe for ReadOnlyView<'a, K, V, S>
impl<'a, K, V, S = RandomState> !Send for ReadOnlyView<'a, K, V, S>
impl<'a, K, V, S> Sync for ReadOnlyView<'a, K, V, S>
impl<'a, K, V, S> Unpin for ReadOnlyView<'a, K, V, S>
impl<'a, K, V, S = RandomState> !UnwindSafe for ReadOnlyView<'a, K, V, S>
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more