Home
last modified time | relevance | path

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

/external/rust/crates/tokio/src/util/
Dpad.rs13 pub(crate) struct CachePadded<T> { struct
17 unsafe impl<T: Send> Send for CachePadded<T> {} implementation
18 unsafe impl<T: Sync> Sync for CachePadded<T> {} implementation
20 impl<T> CachePadded<T> { impl
26 impl<T> Deref for CachePadded<T> { implementation
34 impl<T> DerefMut for CachePadded<T> { implementation
40 impl<T: fmt::Debug> fmt::Debug for CachePadded<T> { implementation
48 impl<T> From<T> for CachePadded<T> { implementation
/external/rust/crates/crossbeam-utils/src/
Dcache_padded.rs128 pub struct CachePadded<T> { struct
132 unsafe impl<T: Send> Send for CachePadded<T> {} argument
133 unsafe impl<T: Sync> Sync for CachePadded<T> {} implementation
135 impl<T> CachePadded<T> { impl
165 impl<T> Deref for CachePadded<T> { implementation
173 impl<T> DerefMut for CachePadded<T> { implementation
179 impl<T: fmt::Debug> fmt::Debug for CachePadded<T> { implementation
187 impl<T> From<T> for CachePadded<T> { implementation
/external/rust/crates/tokio/src/time/driver/
Dentry.rs629 struct CachePadded<T>(T); struct