[][src]Struct wide::i8x32

#[repr(C, align(16))]pub struct i8x32 { /* fields omitted */ }

Implementations

impl i8x32[src]

#[must_use]pub fn blend(self, t: Self, f: Self) -> Self[src]

#[must_use]pub fn abs(self) -> Self[src]

#[must_use]pub fn max(self, rhs: Self) -> Self[src]

#[must_use]pub fn min(self, rhs: Self) -> Self[src]

impl i8x32[src]

#[must_use]pub fn splat(elem: i8) -> i8x32[src]

Trait Implementations

impl<'_> Add<&'_ i8x32> for i8x32[src]

type Output = Self

The resulting type after applying the + operator.

impl Add<i8x32> for i8x32[src]

type Output = Self

The resulting type after applying the + operator.

impl<'_> AddAssign<&'_ i8x32> for i8x32[src]

impl AddAssign<i8x32> for i8x32[src]

impl Binary for i8x32[src]

impl<'_> BitAnd<&'_ i8x32> for i8x32[src]

type Output = Self

The resulting type after applying the & operator.

impl BitAnd<i8x32> for i8x32[src]

type Output = Self

The resulting type after applying the & operator.

impl<'_> BitAndAssign<&'_ i8x32> for i8x32[src]

impl BitAndAssign<i8x32> for i8x32[src]

impl<'_> BitOr<&'_ i8x32> for i8x32[src]

type Output = Self

The resulting type after applying the | operator.

impl BitOr<i8x32> for i8x32[src]

type Output = Self

The resulting type after applying the | operator.

impl<'_> BitOrAssign<&'_ i8x32> for i8x32[src]

impl BitOrAssign<i8x32> for i8x32[src]

impl<'_> BitXor<&'_ i8x32> for i8x32[src]

type Output = Self

The resulting type after applying the ^ operator.

impl BitXor<i8x32> for i8x32[src]

type Output = Self

The resulting type after applying the ^ operator.

impl<'_> BitXorAssign<&'_ i8x32> for i8x32[src]

impl BitXorAssign<i8x32> for i8x32[src]

impl Clone for i8x32[src]

impl CmpEq<i8x32> for i8x32[src]

type Output = Self

impl CmpGt<i8x32> for i8x32[src]

type Output = Self

impl CmpLt<i8x32> for i8x32[src]

type Output = Self

impl Copy for i8x32[src]

impl Debug for i8x32[src]

impl Default for i8x32[src]

impl Display for i8x32[src]

impl Eq for i8x32[src]

impl<'_> From<&'_ [i8]> for i8x32[src]

impl From<[i8; 32]> for i8x32[src]

impl From<i8> for i8x32[src]

#[must_use]fn from(elem: i8) -> Self[src]

Splats the single value given across all lanes.

impl From<i8x32> for [i8; 32][src]

impl LowerExp for i8x32[src]

impl LowerHex for i8x32[src]

impl Neg for i8x32[src]

type Output = Self

The resulting type after applying the - operator.

impl<'_> Neg for &'_ i8x32[src]

type Output = i8x32

The resulting type after applying the - operator.

impl Not for i8x32[src]

type Output = Self

The resulting type after applying the ! operator.

impl<'_> Not for &'_ i8x32[src]

type Output = i8x32

The resulting type after applying the ! operator.

impl Octal for i8x32[src]

impl PartialEq<i8x32> for i8x32[src]

impl Pod for i8x32[src]

impl StructuralEq for i8x32[src]

impl StructuralPartialEq for i8x32[src]

impl<'_> Sub<&'_ i8x32> for i8x32[src]

type Output = Self

The resulting type after applying the - operator.

impl Sub<i8x32> for i8x32[src]

type Output = Self

The resulting type after applying the - operator.

impl<'_> SubAssign<&'_ i8x32> for i8x32[src]

impl SubAssign<i8x32> for i8x32[src]

impl<RHS> Sum<RHS> for i8x32 where
    i8x32: AddAssign<RHS>, 
[src]

impl UpperExp for i8x32[src]

impl UpperHex for i8x32[src]

impl Zeroable for i8x32[src]

Auto Trait Implementations

impl Send for i8x32

impl Sync for i8x32

impl Unpin for i8x32

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, 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.