#[repr(align(128))]pub struct CachePadded<T> {
value: T,
}
Expand description
Pads and aligns a value to the length of a cache line.
Fields§
§value: T
Implementations§
source§impl<T> CachePadded<T>
impl<T> CachePadded<T>
sourcepub fn new(value: T) -> CachePadded<T>
pub fn new(value: T) -> CachePadded<T>
Pads and aligns a value to the length of a cache line.
Trait Implementations§
source§impl<T: Clone> Clone for CachePadded<T>
impl<T: Clone> Clone for CachePadded<T>
source§fn clone(&self) -> CachePadded<T>
fn clone(&self) -> CachePadded<T>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<T: Default> Default for CachePadded<T>
impl<T: Default> Default for CachePadded<T>
source§fn default() -> CachePadded<T>
fn default() -> CachePadded<T>
Returns the “default value” for a type. Read more
source§impl<T> Deref for CachePadded<T>
impl<T> Deref for CachePadded<T>
source§impl<T> DerefMut for CachePadded<T>
impl<T> DerefMut for CachePadded<T>
source§impl<T: Eq> Eq for CachePadded<T>
impl<T: Eq> Eq for CachePadded<T>
fn assert_receiver_is_total_eq(&self)
source§impl<T: Hash> Hash for CachePadded<T>
impl<T: Hash> Hash for CachePadded<T>
source§impl<T: PartialEq> PartialEq<CachePadded<T>> for CachePadded<T>
impl<T: PartialEq> PartialEq<CachePadded<T>> for CachePadded<T>
source§fn eq(&self, other: &CachePadded<T>) -> bool
fn eq(&self, other: &CachePadded<T>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl<T: Copy> Copy for CachePadded<T>
impl<T> StructuralEq for CachePadded<T>
impl<T> StructuralPartialEq for CachePadded<T>
Auto Trait Implementations§
impl<T> RefUnwindSafe for CachePadded<T>where T: RefUnwindSafe,
impl<T> Send for CachePadded<T>where T: Send,
impl<T> Sync for CachePadded<T>where T: Sync,
impl<T> Unpin for CachePadded<T>where T: Unpin,
impl<T> UnwindSafe for CachePadded<T>where T: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more