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]

Pads a value to the length of a cache line.

Trait Implementations

impl<T> Send for CachePadded<T> where
    T: Send
[src]

impl<T> Clone for CachePadded<T> where
    T: Clone
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<T> DerefMut for CachePadded<T>
[src]

Important traits for &'a mut R

Mutably dereferences the value.

impl<T> Default for CachePadded<T> where
    T: Default
[src]

Returns the "default value" for a type. Read more

impl<T> Debug for CachePadded<T> where
    T: Debug
[src]

Formats the value using the given formatter. Read more

impl<T> Deref for CachePadded<T>
[src]

The resulting type after dereferencing.

Important traits for &'a mut R

Dereferences the value.

impl<T> Sync for CachePadded<T> where
    T: Sync
[src]

impl<T> From<T> for CachePadded<T>
[src]

Performs the conversion.