[][src]Struct wide::u8x16

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

Implementations

impl u8x16[src]

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

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

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

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

impl u8x16[src]

#[must_use]pub fn splat(elem: u8) -> u8x16[src]

Trait Implementations

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

type Output = Self

The resulting type after applying the + operator.

impl Add<u8x16> for u8x16[src]

type Output = Self

The resulting type after applying the + operator.

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

impl AddAssign<u8x16> for u8x16[src]

impl Binary for u8x16[src]

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

type Output = Self

The resulting type after applying the & operator.

impl BitAnd<u8x16> for u8x16[src]

type Output = Self

The resulting type after applying the & operator.

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

impl BitAndAssign<u8x16> for u8x16[src]

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

type Output = Self

The resulting type after applying the | operator.

impl BitOr<u8x16> for u8x16[src]

type Output = Self

The resulting type after applying the | operator.

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

impl BitOrAssign<u8x16> for u8x16[src]

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

type Output = Self

The resulting type after applying the ^ operator.

impl BitXor<u8x16> for u8x16[src]

type Output = Self

The resulting type after applying the ^ operator.

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

impl BitXorAssign<u8x16> for u8x16[src]

impl Clone for u8x16[src]

impl Copy for u8x16[src]

impl Debug for u8x16[src]

impl Default for u8x16[src]

impl Display for u8x16[src]

impl Eq for u8x16[src]

impl<'_> From<&'_ [u8]> for u8x16[src]

impl From<[u8; 16]> for u8x16[src]

impl From<u8> for u8x16[src]

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

Splats the single value given across all lanes.

impl From<u8x16> for [u8; 16][src]

impl LowerExp for u8x16[src]

impl LowerHex for u8x16[src]

impl Neg for u8x16[src]

type Output = Self

The resulting type after applying the - operator.

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

type Output = u8x16

The resulting type after applying the - operator.

impl Not for u8x16[src]

type Output = Self

The resulting type after applying the ! operator.

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

type Output = u8x16

The resulting type after applying the ! operator.

impl Octal for u8x16[src]

impl PartialEq<u8x16> for u8x16[src]

impl Pod for u8x16[src]

impl StructuralEq for u8x16[src]

impl StructuralPartialEq for u8x16[src]

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

type Output = Self

The resulting type after applying the - operator.

impl Sub<u8x16> for u8x16[src]

type Output = Self

The resulting type after applying the - operator.

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

impl SubAssign<u8x16> for u8x16[src]

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

impl UpperExp for u8x16[src]

impl UpperHex for u8x16[src]

impl Zeroable for u8x16[src]

Auto Trait Implementations

impl Send for u8x16

impl Sync for u8x16

impl Unpin for u8x16

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.