Union ppv_lite86::x86_64::vec128_storage[][src]

pub union vec128_storage {
    // some fields omitted
}
Expand description

Generic wrapper for unparameterized storage of any of the possible impls. Converting into and out of this type should be essentially free, although it may be more aligned than a particular impl requires.

Trait Implementations

impl Clone for vec128_storage[src]

fn clone(&self) -> vec128_storage[src]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Default for vec128_storage[src]

fn default() -> Self[src]

Returns the “default value” for a type. Read more

impl<'a> Into<&'a [u32; 4]> for &'a vec128_storage[src]

fn into(self) -> &'a [u32; 4][src]

Performs the conversion.

impl Into<[u128; 1]> for vec128_storage[src]

fn into(self) -> [u128; 1][src]

Performs the conversion.

impl Into<[u32; 4]> for vec128_storage[src]

fn into(self) -> [u32; 4][src]

Performs the conversion.

impl Into<[u64; 2]> for vec128_storage[src]

fn into(self) -> [u64; 2][src]

Performs the conversion.

impl Store<vec128_storage> for vec128_storage[src]

unsafe fn unpack(p: vec128_storage) -> Self[src]

impl Copy for vec128_storage[src]

Auto Trait Implementations

impl Send for vec128_storage

impl Sync for vec128_storage

impl Unpin for vec128_storage

Blanket Implementations

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

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

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

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

Immutably borrows from an owned value. Read more

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

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

Mutably borrows from an owned value. Read more

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

pub fn from(t: T) -> T[src]

Performs the conversion.

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

pub fn into(self) -> U[src]

Performs the conversion.

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.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

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.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.