[][src]Struct conquer_util::align::Aligned8

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

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

Fields

aligned: T

The aligned inner value.

Implementations

impl<T> Aligned8<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 Aligned8<T>[src]

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Auto Trait Implementations

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

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

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

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

impl<T> UnwindSafe for Aligned8<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>,