Searched defs:TicketMutexGuard (Results 1 – 1 of 1) sorted by relevance
/external/rust/android-crates-io/crates/spin/src/mutex/ |
D | ticket.rs | 83 pub struct TicketMutexGuard<'a, T: ?Sized + 'a> { struct 84 next_serving: &'a AtomicUsize, 85 ticket: usize, 86 data: &'a mut T, 301 impl<'a, T: ?Sized> TicketMutexGuard<'a, T> { impl 322 impl<'a, T: ?Sized + fmt::Debug> fmt::Debug for TicketMutexGuard<'a, T> { implementation 328 impl<'a, T: ?Sized + fmt::Display> fmt::Display for TicketMutexGuard<'a, T> { implementation 334 impl<'a, T: ?Sized> Deref for TicketMutexGuard<'a, T> { implementation 341 impl<'a, T: ?Sized> DerefMut for TicketMutexGuard<'a, T> { implementation 347 impl<'a, T: ?Sized> Drop for TicketMutexGuard<'a, T> { implementation
|