[][src]Struct conquer_util::align::Aligned128

#[repr(align(128))]pub struct Aligned128<T> {
    pub aligned: T,
}

A thin wrapper type with an alignment of at least 128B.

Fields

aligned: T

The aligned inner value.

Implementations

impl<T> Aligned128<T>[src]

pub const fn new(aligned: T) -> Self[src]

Creates a new aligned value.

pub const fn get(&self) -> &T[src]

Returns a shared reference to the aligned value.

pub fn get_mut(&mut self) -> &mut T[src]

Returns a mutable reference to the aligned value.

Trait Implementations

impl<T> AsMut<T> for Aligned128<T>[src]

impl<T> AsRef<T> for Aligned128<T>[src]

impl<T> Borrow<T> for Aligned128<T>[src]

impl<T> BorrowMut<T> for Aligned128<T>[src]

impl<T: Clone> Clone for Aligned128<T>[src]

impl<T: Copy> Copy for Aligned128<T>[src]

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

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

impl<T: Eq> Eq for Aligned128<T>[src]

impl<T: Hash> Hash for Aligned128<T>[src]

impl<T: Ord> Ord for Aligned128<T>[src]

impl<T: PartialEq> PartialEq<Aligned128<T>> for Aligned128<T>[src]

impl<T: PartialOrd> PartialOrd<Aligned128<T>> for Aligned128<T>[src]

impl<T> StructuralEq for Aligned128<T>[src]

impl<T> StructuralPartialEq for Aligned128<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for Aligned128<T> where
    T: RefUnwindSafe

impl<T> Send for Aligned128<T> where
    T: Send

impl<T> Sync for Aligned128<T> where
    T: Sync

impl<T> Unpin for Aligned128<T> where
    T: Unpin

impl<T> UnwindSafe for Aligned128<T> where
    T: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,