Home
last modified time | relevance | path

Searched defs:ShardedLock (Results 1 – 1 of 1) sorted by relevance

/external/rust/crates/crossbeam-utils/src/sync/
Dsharded_lock.rs76 pub struct ShardedLock<T: ?Sized> { struct
84 unsafe impl<T: ?Sized + Send> Send for ShardedLock<T> {} argument
85 unsafe impl<T: ?Sized + Send + Sync> Sync for ShardedLock<T> {} implementation
87 impl<T: ?Sized> UnwindSafe for ShardedLock<T> {} implementation
88 impl<T: ?Sized> RefUnwindSafe for ShardedLock<T> {} implementation
90 impl<T> ShardedLock<T> { implementation
145 impl<T: ?Sized> ShardedLock<T> { implementation
444 impl<T: ?Sized + fmt::Debug> fmt::Debug for ShardedLock<T> { implementation
470 impl<T: Default> Default for ShardedLock<T> { implementation
476 impl<T> From<T> for ShardedLock<T> { implementation