Searched defs:CachePadded (Results 1 – 3 of 3) sorted by relevance
13 pub(crate) struct CachePadded<T> { struct17 unsafe impl<T: Send> Send for CachePadded<T> {} implementation18 unsafe impl<T: Sync> Sync for CachePadded<T> {} implementation20 impl<T> CachePadded<T> { implementation26 impl<T> Deref for CachePadded<T> { implementation34 impl<T> DerefMut for CachePadded<T> { implementation40 impl<T: fmt::Debug> fmt::Debug for CachePadded<T> { implementation48 impl<T> From<T> for CachePadded<T> { implementation
128 pub struct CachePadded<T> { struct132 unsafe impl<T: Send> Send for CachePadded<T> {} implementation133 unsafe impl<T: Sync> Sync for CachePadded<T> {} implementation135 impl<T> CachePadded<T> { implementation165 impl<T> Deref for CachePadded<T> { implementation173 impl<T> DerefMut for CachePadded<T> { implementation179 impl<T: fmt::Debug> fmt::Debug for CachePadded<T> { implementation187 impl<T> From<T> for CachePadded<T> { implementation
629 struct CachePadded<T>(T); struct