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: Clone> Clone for CachePadded<T>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

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

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

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

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

The resulting type after dereferencing.

Dereferences the value.

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

Mutably dereferences the value.

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

Formats the value using the given formatter. Read more

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

Performs the conversion.