Home
last modified time | relevance | path

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

/aosp_15_r20/external/rust/android-crates-io/crates/crossbeam-utils/src/sync/
Dsharded_lock.rs78 pub struct ShardedLock<T: ?Sized> { struct
86 unsafe impl<T: ?Sized + Send> Send for ShardedLock<T> {} argument
87 unsafe impl<T: ?Sized + Send + Sync> Sync for ShardedLock<T> {} implementation
89 impl<T: ?Sized> UnwindSafe for ShardedLock<T> {} implementation
90 impl<T: ?Sized> RefUnwindSafe for ShardedLock<T> {} implementation
92 impl<T> ShardedLock<T> { implementation
147 impl<T: ?Sized> ShardedLock<T> { impl
446 impl<T: ?Sized + fmt::Debug> fmt::Debug for ShardedLock<T> { implementation
472 impl<T: Default> Default for ShardedLock<T> { implementation
478 impl<T> From<T> for ShardedLock<T> { implementation