Searched defs:FairMutexGuard (Results 1 – 2 of 2) sorted by relevance
/external/rust/android-crates-io/crates/spin/src/mutex/ |
D | fair.rs | 84 pub struct FairMutexGuard<'a, T: ?Sized + 'a> { struct 85 lock: &'a AtomicUsize, 86 data: *mut T, 110 unsafe impl<T: ?Sized + Sync> Sync for FairMutexGuard<'_, T> {} implementation 111 unsafe impl<T: ?Sized + Send> Send for FairMutexGuard<'_, T> {} implementation 382 impl<'a, T: ?Sized> FairMutexGuard<'a, T> { implementation 404 impl<'a, T: ?Sized + fmt::Debug> fmt::Debug for FairMutexGuard<'a, T> { implementation 410 impl<'a, T: ?Sized + fmt::Display> fmt::Display for FairMutexGuard<'a, T> { implementation 416 impl<'a, T: ?Sized> Deref for FairMutexGuard<'a, T> { implementation 424 impl<'a, T: ?Sized> DerefMut for FairMutexGuard<'a, T> { implementation [all …]
|
/external/rust/android-crates-io/crates/parking_lot/src/ |
D | fair_mutex.rs | 91 pub type FairMutexGuard<'a, T> = lock_api::MutexGuard<'a, RawFairMutex, T>; typedef
|