Struct wide::u8x16

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

Implementations§

source§

impl u8x16

source

pub const ONE: u8x16 = _

source

pub const ZERO: u8x16 = _

source

pub const MAX: u8x16 = _

source

pub const MIN: u8x16 = _

source

pub const LANES: u16 = 16u16

The number of lanes in this SIMD vector.

source

pub const BITS: u16 = 128u16

The size of this SIMD vector in bits.

source§

impl u8x16

source

pub fn new(array: [u8; 16]) -> Self

source

pub fn cmp_eq(self, rhs: Self) -> Self

source

pub fn blend(self, t: Self, f: Self) -> Self

source

pub fn max(self, rhs: Self) -> Self

source

pub fn min(self, rhs: Self) -> Self

source

pub fn saturating_add(self, rhs: Self) -> Self

source

pub fn saturating_sub(self, rhs: Self) -> Self

source

pub fn unpack_low(lhs: u8x16, rhs: u8x16) -> u8x16

Unpack and interleave low lanes of two u8x16

source

pub fn unpack_high(lhs: u8x16, rhs: u8x16) -> u8x16

Unpack and interleave high lanes of two u8x16

source

pub fn narrow_i16x8(lhs: i16x8, rhs: i16x8) -> Self

Pack and saturate two i16x8 to u8x16

source

pub fn to_array(self) -> [u8; 16]

source

pub fn as_array_ref(&self) -> &[u8; 16]

source

pub fn as_array_mut(&mut self) -> &mut [u8; 16]

source§

impl u8x16

source

pub fn splat(elem: u8) -> u8x16

Trait Implementations§

source§

impl Add<&u8x16> for u8x16

§

type Output = u8x16

The resulting type after applying the + operator.
source§

fn add(self, rhs: &Self) -> Self::Output

Performs the + operation. Read more
source§

impl Add<u8> for u8x16

§

type Output = u8x16

The resulting type after applying the + operator.
source§

fn add(self, rhs: u8) -> Self::Output

Performs the + operation. Read more
source§

impl Add<u8x16> for u8

§

type Output = u8x16

The resulting type after applying the + operator.
source§

fn add(self, rhs: u8x16) -> Self::Output

Performs the + operation. Read more
source§

impl Add for u8x16

§

type Output = u8x16

The resulting type after applying the + operator.
source§

fn add(self, rhs: Self) -> Self::Output

Performs the + operation. Read more
source§

impl AddAssign<&u8x16> for u8x16

source§

fn add_assign(&mut self, rhs: &Self)

Performs the += operation. Read more
source§

impl AddAssign for u8x16

source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
source§

impl Binary for u8x16

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter.
source§

impl BitAnd<&u8x16> for u8x16

§

type Output = u8x16

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: &Self) -> Self::Output

Performs the & operation. Read more
source§

impl BitAnd for u8x16

§

type Output = u8x16

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: Self) -> Self::Output

Performs the & operation. Read more
source§

impl BitAndAssign<&u8x16> for u8x16

source§

fn bitand_assign(&mut self, rhs: &Self)

Performs the &= operation. Read more
source§

impl BitAndAssign for u8x16

source§

fn bitand_assign(&mut self, rhs: Self)

Performs the &= operation. Read more
source§

impl BitOr<&u8x16> for u8x16

§

type Output = u8x16

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: &Self) -> Self::Output

Performs the | operation. Read more
source§

impl BitOr for u8x16

§

type Output = u8x16

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: Self) -> Self::Output

Performs the | operation. Read more
source§

impl BitOrAssign<&u8x16> for u8x16

source§

fn bitor_assign(&mut self, rhs: &Self)

Performs the |= operation. Read more
source§

impl BitOrAssign for u8x16

source§

fn bitor_assign(&mut self, rhs: Self)

Performs the |= operation. Read more
source§

impl BitXor<&u8x16> for u8x16

§

type Output = u8x16

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: &Self) -> Self::Output

Performs the ^ operation. Read more
source§

impl BitXor for u8x16

§

type Output = u8x16

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: Self) -> Self::Output

Performs the ^ operation. Read more
source§

impl BitXorAssign<&u8x16> for u8x16

source§

fn bitxor_assign(&mut self, rhs: &Self)

Performs the ^= operation. Read more
source§

impl BitXorAssign for u8x16

source§

fn bitxor_assign(&mut self, rhs: Self)

Performs the ^= operation. Read more
source§

impl Clone for u8x16

source§

fn clone(&self) -> u8x16

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for u8x16

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for u8x16

source§

fn default() -> u8x16

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

impl Display for u8x16

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<&[u8]> for u8x16

source§

fn from(src: &[u8]) -> u8x16

Converts to this type from the input type.
source§

impl From<[u8; 16]> for u8x16

source§

fn from(arr: [u8; 16]) -> Self

Converts to this type from the input type.
source§

impl From<u8> for u8x16

source§

fn from(elem: u8) -> Self

Splats the single value given across all lanes.

source§

impl From<u8x16> for [u8; 16]

source§

fn from(simd: u8x16) -> Self

Converts to this type from the input type.
source§

impl LowerExp for u8x16

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter.
source§

impl LowerHex for u8x16

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter.
source§

impl Neg for &u8x16

§

type Output = u8x16

The resulting type after applying the - operator.
source§

fn neg(self) -> Self::Output

Performs the unary - operation. Read more
source§

impl Neg for u8x16

§

type Output = u8x16

The resulting type after applying the - operator.
source§

fn neg(self) -> Self::Output

Performs the unary - operation. Read more
source§

impl Not for &u8x16

§

type Output = u8x16

The resulting type after applying the ! operator.
source§

fn not(self) -> Self::Output

Performs the unary ! operation. Read more
source§

impl Not for u8x16

§

type Output = u8x16

The resulting type after applying the ! operator.
source§

fn not(self) -> Self::Output

Performs the unary ! operation. Read more
source§

impl Octal for u8x16

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter.
source§

impl PartialEq for u8x16

source§

fn eq(&self, other: &u8x16) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Sub<&u8x16> for u8x16

§

type Output = u8x16

The resulting type after applying the - operator.
source§

fn sub(self, rhs: &Self) -> Self::Output

Performs the - operation. Read more
source§

impl Sub<u8> for u8x16

§

type Output = u8x16

The resulting type after applying the - operator.
source§

fn sub(self, rhs: u8) -> Self::Output

Performs the - operation. Read more
source§

impl Sub<u8x16> for u8

§

type Output = u8x16

The resulting type after applying the - operator.
source§

fn sub(self, rhs: u8x16) -> Self::Output

Performs the - operation. Read more
source§

impl Sub for u8x16

§

type Output = u8x16

The resulting type after applying the - operator.
source§

fn sub(self, rhs: Self) -> Self::Output

Performs the - operation. Read more
source§

impl SubAssign<&u8x16> for u8x16

source§

fn sub_assign(&mut self, rhs: &Self)

Performs the -= operation. Read more
source§

impl SubAssign for u8x16

source§

fn sub_assign(&mut self, rhs: Self)

Performs the -= operation. Read more
source§

impl<RHS> Sum<RHS> for u8x16
where u8x16: AddAssign<RHS>,

source§

fn sum<I: Iterator<Item = RHS>>(iter: I) -> Self

Method which takes an iterator and generates Self from the elements by “summing up” the items.
source§

impl UpperExp for u8x16

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter.
source§

impl UpperHex for u8x16

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter.
source§

impl Zeroable for u8x16

source§

fn zeroed() -> Self

source§

impl Copy for u8x16

source§

impl Eq for u8x16

source§

impl Pod for u8x16

source§

impl StructuralPartialEq for u8x16

Auto Trait Implementations§

§

impl Freeze for u8x16

§

impl RefUnwindSafe for u8x16

§

impl Send for u8x16

§

impl Sync for u8x16

§

impl Unpin for u8x16

§

impl UnwindSafe for u8x16

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CheckedBitPattern for T
where T: AnyBitPattern,

§

type Bits = T

Self must have the same layout as the specified Bits except for the possible invalid bit patterns being checked during is_valid_bit_pattern.
source§

fn is_valid_bit_pattern(_bits: &T) -> bool

If this function returns true, then it must be valid to reinterpret bits as &Self.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

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

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

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

Performs the conversion.
source§

impl<T> AnyBitPattern for T
where T: Pod,

source§

impl<T> NoUninit for T
where T: Pod,