Struct crossbeam_utils::CachePadded [−][src]
pub struct CachePadded<T> { /* fields omitted */ }
Pads T
to the length of a cache line.
Sometimes concurrent programming requires a piece of data to be padded out to the size of a cacheline to avoid "false sharing": cache lines being invalidated due to unrelated concurrent activity. Use this type when you want to avoid cache locality.
Cache lines are assumed to be 64 bytes on all architectures.
Size and alignment
The size of CachePadded<T>
is the smallest multiple of 64 bytes large enough to accommodate
a value of type T
.
The alignment of CachePadded<T>
is the maximum of 64 bytes and the alignment of T
.
Methods
impl<T> CachePadded<T>
[src]
impl<T> CachePadded<T>
pub fn new(t: T) -> CachePadded<T>
[src]
pub fn new(t: T) -> CachePadded<T>
Pads a value to the length of a cache line.
Trait Implementations
impl<T: Clone> Clone for CachePadded<T>
[src]
impl<T: Clone> Clone for CachePadded<T>
fn clone(&self) -> CachePadded<T>
[src]
fn clone(&self) -> CachePadded<T>
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl<T: Default> Default for CachePadded<T>
[src]
impl<T: Default> Default for CachePadded<T>
fn default() -> CachePadded<T>
[src]
fn default() -> CachePadded<T>
Returns the "default value" for a type. Read more
impl<T: Send> Send for CachePadded<T>
[src]
impl<T: Send> Send for CachePadded<T>
impl<T: Sync> Sync for CachePadded<T>
[src]
impl<T: Sync> Sync for CachePadded<T>
impl<T> Deref for CachePadded<T>
[src]
impl<T> Deref for CachePadded<T>
type Target = T
The resulting type after dereferencing.
fn deref(&self) -> &T
[src]
fn deref(&self) -> &T
Dereferences the value.
impl<T> DerefMut for CachePadded<T>
[src]
impl<T> DerefMut for CachePadded<T>
impl<T: Debug> Debug for CachePadded<T>
[src]
impl<T: Debug> Debug for CachePadded<T>
fn fmt(&self, f: &mut Formatter) -> Result
[src]
fn fmt(&self, f: &mut Formatter) -> Result
Formats the value using the given formatter. Read more
impl<T> From<T> for CachePadded<T>
[src]
impl<T> From<T> for CachePadded<T>