Enum rustc_data_structures::sharded::Sharded
source · pub enum Sharded<T> {
Single(Lock<T>),
}
Expand description
An array of cache-line aligned inner locked structures with convenience methods. A single field is used when the compiler uses only one thread.
Variants§
Implementations§
source§impl<T> Sharded<T>
impl<T> Sharded<T>
pub fn new(value: impl FnMut() -> T) -> Self
sourcepub fn get_shard_by_value<K: Hash + ?Sized>(&self, _val: &K) -> &Lock<T>
pub fn get_shard_by_value<K: Hash + ?Sized>(&self, _val: &K) -> &Lock<T>
The shard is selected by hashing val
with FxHasher
.
pub fn get_shard_by_hash(&self, hash: u64) -> &Lock<T>
pub fn get_shard_by_index(&self, _i: usize) -> &Lock<T>
sourcepub fn lock_shard_by_value<K: Hash + ?Sized>(
&self,
_val: &K
) -> LockGuard<'_, T>
pub fn lock_shard_by_value<K: Hash + ?Sized>( &self, _val: &K ) -> LockGuard<'_, T>
The shard is selected by hashing val
with FxHasher
.
pub fn lock_shard_by_hash(&self, hash: u64) -> LockGuard<'_, T>
pub fn lock_shard_by_index(&self, _i: usize) -> LockGuard<'_, T>
pub fn lock_shards(&self) -> impl Iterator<Item = LockGuard<'_, T>>
pub fn try_lock_shards(&self) -> impl Iterator<Item = Option<LockGuard<'_, T>>>
source§impl<K: Eq + Hash + Copy + IntoPointer> Sharded<HashMap<K, (), BuildHasherDefault<FxHasher>>>
impl<K: Eq + Hash + Copy + IntoPointer> Sharded<HashMap<K, (), BuildHasherDefault<FxHasher>>>
pub fn contains_pointer_to<T: Hash + IntoPointer>(&self, value: &T) -> bool
Trait Implementations§
Auto Trait Implementations§
impl<T> !RefUnwindSafe for Sharded<T>
impl<T> Send for Sharded<T>where T: Send,
impl<T> !Sync for Sharded<T>
impl<T> Unpin for Sharded<T>where T: Unpin,
impl<T> UnwindSafe for Sharded<T>where T: 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
impl<'a, T> Captures<'a> for Twhere T: ?Sized,
Layout§
Note: Unable to compute type layout, possibly due to this type having generic parameters. Layout can only be computed for concrete, fully-instantiated types.