Struct cache_padded::CachePadded
source · [−]#[repr(align(128))]pub struct CachePadded<T>(_);
Expand description
Pads and aligns data to the length of a cache line.
Implementations
sourceimpl<T> CachePadded<T>
impl<T> CachePadded<T>
sourcepub const fn new(t: T) -> CachePadded<T>
pub const fn new(t: T) -> CachePadded<T>
Pads and aligns a piece of data to the length of a cache line.
Examples
use cache_padded::CachePadded;
let padded = CachePadded::new(1);
sourcepub fn into_inner(self) -> T
pub fn into_inner(self) -> T
Returns the inner data.
Examples
use cache_padded::CachePadded;
let padded = CachePadded::new(7);
let data = padded.into_inner();
assert_eq!(data, 7);
Trait Implementations
sourceimpl<T: Clone> Clone for CachePadded<T>
impl<T: Clone> Clone for CachePadded<T>
sourcefn clone(&self) -> CachePadded<T>
fn clone(&self) -> CachePadded<T>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl<T: Debug> Debug for CachePadded<T>
impl<T: Debug> Debug for CachePadded<T>
sourceimpl<T: Default> Default for CachePadded<T>
impl<T: Default> Default for CachePadded<T>
sourcefn default() -> CachePadded<T>
fn default() -> CachePadded<T>
Returns the “default value” for a type. Read more
sourceimpl<T> Deref for CachePadded<T>
impl<T> Deref for CachePadded<T>
sourceimpl<T> DerefMut for CachePadded<T>
impl<T> DerefMut for CachePadded<T>
sourceimpl<T> From<T> for CachePadded<T>
impl<T> From<T> for CachePadded<T>
sourceimpl<T: Hash> Hash for CachePadded<T>
impl<T: Hash> Hash for CachePadded<T>
sourceimpl<T: PartialEq> PartialEq<CachePadded<T>> for CachePadded<T>
impl<T: PartialEq> PartialEq<CachePadded<T>> for CachePadded<T>
sourcefn 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 ==
. Read more
sourcefn ne(&self, other: &CachePadded<T>) -> bool
fn ne(&self, other: &CachePadded<T>) -> bool
This method tests for !=
.
impl<T: Copy> Copy for CachePadded<T>
impl<T: Eq> Eq 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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more