Skip to main content

Mask

Struct Mask 

Source
pub struct Mask<T, const N: usize>(/* private fields */)
where
    T: MaskElement;
๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)
Expand description

A SIMD vector mask for N elements of width specified by Element.

Masks represent boolean inclusion/exclusion on a per-element basis.

The layout of this type is unspecified, and may change between platforms and/or Rust versions, and code should not assume that it is equivalent to [T; N].

N cannot be 0 and may be at most 64. This limit may be increased in the future.

Implementationsยง

Sourceยง

impl<T, const N: usize> Mask<T, N>
where T: MaskElement,

Source

pub fn reverse(self) -> Mask<T, N>

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)

Reverse the order of the elements in the mask.

Source

pub fn rotate_elements_left<const OFFSET: usize>(self) -> Mask<T, N>

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)

Rotates the mask such that the first OFFSET elements of the slice move to the end while the last self.len() - OFFSET elements move to the front. After calling rotate_elements_left, the element previously at index OFFSET will become the first element in the slice.

Source

pub fn rotate_elements_right<const OFFSET: usize>(self) -> Mask<T, N>

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)

Rotates the mask such that the first self.len() - OFFSET elements of the mask move to the end while the last OFFSET elements move to the front. After calling rotate_elements_right, the element previously at index self.len() - OFFSET will become the first element in the slice.

Source

pub fn shift_elements_left<const OFFSET: usize>( self, padding: bool, ) -> Mask<T, N>

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)

Shifts the mask elements to the left by OFFSET, filling in with padding from the right.

Source

pub fn shift_elements_right<const OFFSET: usize>( self, padding: bool, ) -> Mask<T, N>

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)

Shifts the mask elements to the right by OFFSET, filling in with padding from the left.

Source

pub fn interleave(self, other: Mask<T, N>) -> (Mask<T, N>, Mask<T, N>)

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)

Interleave two masks.

The resulting masks contain elements taken alternatively from self and other, first filling the first result, and then the second.

The reverse of this operation is Mask::deinterleave.

let a = mask32x4::from_array([false, true, false, true]);
let b = mask32x4::from_array([false, false, true, true]);
let (x, y) = a.interleave(b);
assert_eq!(x.to_array(), [false, false, true, false]);
assert_eq!(y.to_array(), [false, true, true, true]);
Source

pub fn deinterleave(self, other: Mask<T, N>) -> (Mask<T, N>, Mask<T, N>)

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)

Deinterleave two masks.

The first result takes every other element of self and then other, starting with the first element.

The second result takes every other element of self and then other, starting with the second element.

The reverse of this operation is Mask::interleave.

let a = mask32x4::from_array([false, true, false, true]);
let b = mask32x4::from_array([false, false, true, true]);
let (x, y) = a.deinterleave(b);
assert_eq!(x.to_array(), [false, false, false, true]);
assert_eq!(y.to_array(), [true, true, false, true]);
Source

pub fn resize<const M: usize>(self, value: bool) -> Mask<T, M>

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)

Resize a mask.

If M > N, extends the length of a mask, setting the new elements to value. If M < N, truncates the mask to the first M elements.

let x = mask32x4::from_array([false, true, true, false]);
assert_eq!(x.resize::<8>(true).to_array(), [false, true, true, false, true, true, true, true]);
assert_eq!(x.resize::<2>(true).to_array(), [false, true]);
Source

pub fn extract<const START: usize, const LEN: usize>(self) -> Mask<T, LEN>

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)

Extract a vector from another vector.

let x = mask32x4::from_array([false, true, true, false]);
assert_eq!(x.extract::<1, 2>().to_array(), [true, true]);
Sourceยง

impl<T, const N: usize> Mask<T, N>
where T: MaskElement,

Source

pub const fn splat(value: bool) -> Mask<T, N>

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)

Constructs a mask by setting all elements to the given value.

Source

pub fn from_array(array: [bool; N]) -> Mask<T, N>

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)

Converts an array of bools to a SIMD mask.

Source

pub fn to_array(self) -> [bool; N]

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)

Converts a SIMD mask to an array of bools.

Source

pub unsafe fn from_simd_unchecked(value: Simd<T, N>) -> Mask<T, N>

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)

Converts a vector of integers to a mask, where 0 represents false and -1 represents true.

ยงSafety

All elements must be either 0 or -1.

Source

pub fn from_simd(value: Simd<T, N>) -> Mask<T, N>

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)

Converts a vector of integers to a mask, where 0 represents false and -1 represents true.

ยงPanics

Panics if any element is not 0 or -1.

Source

pub fn to_simd(self) -> Simd<T, N>

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)

Converts the mask to a vector of integers, where 0 represents false and -1 represents true.

Source

pub fn cast<U>(self) -> Mask<U, N>
where U: MaskElement,

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)

Converts the mask to a mask of any other element size.

Source

pub unsafe fn test_unchecked(&self, index: usize) -> bool

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)

Tests the value of the specified element.

ยงSafety

index must be less than self.len().

Source

pub fn test(&self, index: usize) -> bool

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)

Tests the value of the specified element.

ยงPanics

Panics if index is greater than or equal to the number of elements in the vector.

Source

pub unsafe fn set_unchecked(&mut self, index: usize, value: bool)

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)

Sets the value of the specified element.

ยงSafety

index must be less than self.len().

Source

pub fn set(&mut self, index: usize, value: bool)

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)

Sets the value of the specified element.

ยงPanics

Panics if index is greater than or equal to the number of elements in the vector.

Source

pub fn any(self) -> bool

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)

Returns true if any element is set, or false otherwise.

Source

pub fn all(self) -> bool

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)

Returns true if all elements are set, or false otherwise.

Source

pub fn to_bitmask(self) -> u64

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)

Creates a bitmask from a mask.

Each bit is set if the corresponding element in the mask is true.

Source

pub fn from_bitmask(bitmask: u64) -> Mask<T, N>

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)

Creates a mask from a bitmask.

For each bit, if it is set, the corresponding element in the mask is set to true. If the mask contains more than 64 elements, the remainder are set to false.

Source

pub fn first_set(self) -> Option<usize>

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)

Finds the index of the first set element.

assert_eq!(mask32x8::splat(false).first_set(), None);
assert_eq!(mask32x8::splat(true).first_set(), Some(0));

let mask = mask32x8::from_array([false, true, false, false, true, false, false, true]);
assert_eq!(mask.first_set(), Some(1));

Trait Implementationsยง

Sourceยง

impl<T, const N: usize> BitAnd<Mask<T, N>> for bool
where T: MaskElement,

Sourceยง

type Output = Mask<T, N>

The resulting type after applying the & operator.
Sourceยง

fn bitand(self, rhs: Mask<T, N>) -> Mask<T, N>

Performs the & operation. Read more
Sourceยง

impl<T, const N: usize> BitAnd<bool> for Mask<T, N>
where T: MaskElement,

Sourceยง

type Output = Mask<T, N>

The resulting type after applying the & operator.
Sourceยง

fn bitand(self, rhs: bool) -> Mask<T, N>

Performs the & operation. Read more
Sourceยง

impl<T, const N: usize> BitAnd for Mask<T, N>
where T: MaskElement,

Sourceยง

type Output = Mask<T, N>

The resulting type after applying the & operator.
Sourceยง

fn bitand(self, rhs: Mask<T, N>) -> Mask<T, N>

Performs the & operation. Read more
Sourceยง

impl<T, const N: usize> BitAndAssign<bool> for Mask<T, N>
where T: MaskElement,

Sourceยง

fn bitand_assign(&mut self, rhs: bool)

Performs the &= operation. Read more
Sourceยง

impl<T, const N: usize> BitAndAssign for Mask<T, N>
where T: MaskElement,

Sourceยง

fn bitand_assign(&mut self, rhs: Mask<T, N>)

Performs the &= operation. Read more
Sourceยง

impl<T, const N: usize> BitOr<Mask<T, N>> for bool
where T: MaskElement,

Sourceยง

type Output = Mask<T, N>

The resulting type after applying the | operator.
Sourceยง

fn bitor(self, rhs: Mask<T, N>) -> Mask<T, N>

Performs the | operation. Read more
Sourceยง

impl<T, const N: usize> BitOr<bool> for Mask<T, N>
where T: MaskElement,

Sourceยง

type Output = Mask<T, N>

The resulting type after applying the | operator.
Sourceยง

fn bitor(self, rhs: bool) -> Mask<T, N>

Performs the | operation. Read more
Sourceยง

impl<T, const N: usize> BitOr for Mask<T, N>
where T: MaskElement,

Sourceยง

type Output = Mask<T, N>

The resulting type after applying the | operator.
Sourceยง

fn bitor(self, rhs: Mask<T, N>) -> Mask<T, N>

Performs the | operation. Read more
Sourceยง

impl<T, const N: usize> BitOrAssign<bool> for Mask<T, N>
where T: MaskElement,

Sourceยง

fn bitor_assign(&mut self, rhs: bool)

Performs the |= operation. Read more
Sourceยง

impl<T, const N: usize> BitOrAssign for Mask<T, N>
where T: MaskElement,

Sourceยง

fn bitor_assign(&mut self, rhs: Mask<T, N>)

Performs the |= operation. Read more
Sourceยง

impl<T, const N: usize> BitXor<Mask<T, N>> for bool
where T: MaskElement,

Sourceยง

type Output = Mask<T, N>

The resulting type after applying the ^ operator.
Sourceยง

fn bitxor(self, rhs: Mask<T, N>) -> <bool as BitXor<Mask<T, N>>>::Output

Performs the ^ operation. Read more
Sourceยง

impl<T, const N: usize> BitXor<bool> for Mask<T, N>
where T: MaskElement,

Sourceยง

type Output = Mask<T, N>

The resulting type after applying the ^ operator.
Sourceยง

fn bitxor(self, rhs: bool) -> <Mask<T, N> as BitXor<bool>>::Output

Performs the ^ operation. Read more
Sourceยง

impl<T, const N: usize> BitXor for Mask<T, N>
where T: MaskElement,

Sourceยง

type Output = Mask<T, N>

The resulting type after applying the ^ operator.
Sourceยง

fn bitxor(self, rhs: Mask<T, N>) -> <Mask<T, N> as BitXor>::Output

Performs the ^ operation. Read more
Sourceยง

impl<T, const N: usize> BitXorAssign<bool> for Mask<T, N>
where T: MaskElement,

Sourceยง

fn bitxor_assign(&mut self, rhs: bool)

Performs the ^= operation. Read more
Sourceยง

impl<T, const N: usize> BitXorAssign for Mask<T, N>
where T: MaskElement,

Sourceยง

fn bitxor_assign(&mut self, rhs: Mask<T, N>)

Performs the ^= operation. Read more
Sourceยง

impl<T, const N: usize> Clone for Mask<T, N>
where T: MaskElement,

Sourceยง

fn clone(&self) -> Mask<T, N>

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) ยท Sourceยง

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

Performs copy-assignment from source. Read more
Sourceยง

impl<T, const N: usize> Debug for Mask<T, N>
where T: MaskElement + Debug,

Sourceยง

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

Formats the value using the given formatter. Read more
Sourceยง

impl<T, const N: usize> Default for Mask<T, N>
where T: MaskElement,

Sourceยง

fn default() -> Mask<T, N>

Returns the โ€œdefault valueโ€ for a type. Read more
Sourceยง

impl<T, const N: usize> From<[bool; N]> for Mask<T, N>
where T: MaskElement,

Sourceยง

fn from(array: [bool; N]) -> Mask<T, N>

Converts to this type from the input type.
Sourceยง

impl<T, const N: usize> From<Mask<T, N>> for [bool; N]
where T: MaskElement,

Sourceยง

fn from(vector: Mask<T, N>) -> [bool; N]

Converts to this type from the input type.
Sourceยง

impl<const N: usize> From<Mask<i16, N>> for Mask<i32, N>

Sourceยง

fn from(value: Mask<i16, N>) -> Mask<i32, N>

Converts to this type from the input type.
Sourceยง

impl<const N: usize> From<Mask<i16, N>> for Mask<i64, N>

Sourceยง

fn from(value: Mask<i16, N>) -> Mask<i64, N>

Converts to this type from the input type.
Sourceยง

impl<const N: usize> From<Mask<i16, N>> for Mask<i8, N>

Sourceยง

fn from(value: Mask<i16, N>) -> Mask<i8, N>

Converts to this type from the input type.
Sourceยง

impl<const N: usize> From<Mask<i16, N>> for Mask<isize, N>

Sourceยง

fn from(value: Mask<i16, N>) -> Mask<isize, N>

Converts to this type from the input type.
Sourceยง

impl<const N: usize> From<Mask<i32, N>> for Mask<i16, N>

Sourceยง

fn from(value: Mask<i32, N>) -> Mask<i16, N>

Converts to this type from the input type.
Sourceยง

impl<const N: usize> From<Mask<i32, N>> for Mask<i64, N>

Sourceยง

fn from(value: Mask<i32, N>) -> Mask<i64, N>

Converts to this type from the input type.
Sourceยง

impl<const N: usize> From<Mask<i32, N>> for Mask<i8, N>

Sourceยง

fn from(value: Mask<i32, N>) -> Mask<i8, N>

Converts to this type from the input type.
Sourceยง

impl<const N: usize> From<Mask<i32, N>> for Mask<isize, N>

Sourceยง

fn from(value: Mask<i32, N>) -> Mask<isize, N>

Converts to this type from the input type.
Sourceยง

impl<const N: usize> From<Mask<i64, N>> for Mask<i16, N>

Sourceยง

fn from(value: Mask<i64, N>) -> Mask<i16, N>

Converts to this type from the input type.
Sourceยง

impl<const N: usize> From<Mask<i64, N>> for Mask<i32, N>

Sourceยง

fn from(value: Mask<i64, N>) -> Mask<i32, N>

Converts to this type from the input type.
Sourceยง

impl<const N: usize> From<Mask<i64, N>> for Mask<i8, N>

Sourceยง

fn from(value: Mask<i64, N>) -> Mask<i8, N>

Converts to this type from the input type.
Sourceยง

impl<const N: usize> From<Mask<i64, N>> for Mask<isize, N>

Sourceยง

fn from(value: Mask<i64, N>) -> Mask<isize, N>

Converts to this type from the input type.
Sourceยง

impl<const N: usize> From<Mask<i8, N>> for Mask<i16, N>

Sourceยง

fn from(value: Mask<i8, N>) -> Mask<i16, N>

Converts to this type from the input type.
Sourceยง

impl<const N: usize> From<Mask<i8, N>> for Mask<i32, N>

Sourceยง

fn from(value: Mask<i8, N>) -> Mask<i32, N>

Converts to this type from the input type.
Sourceยง

impl<const N: usize> From<Mask<i8, N>> for Mask<i64, N>

Sourceยง

fn from(value: Mask<i8, N>) -> Mask<i64, N>

Converts to this type from the input type.
Sourceยง

impl<const N: usize> From<Mask<i8, N>> for Mask<isize, N>

Sourceยง

fn from(value: Mask<i8, N>) -> Mask<isize, N>

Converts to this type from the input type.
Sourceยง

impl<const N: usize> From<Mask<isize, N>> for Mask<i16, N>

Sourceยง

fn from(value: Mask<isize, N>) -> Mask<i16, N>

Converts to this type from the input type.
Sourceยง

impl<const N: usize> From<Mask<isize, N>> for Mask<i32, N>

Sourceยง

fn from(value: Mask<isize, N>) -> Mask<i32, N>

Converts to this type from the input type.
Sourceยง

impl<const N: usize> From<Mask<isize, N>> for Mask<i64, N>

Sourceยง

fn from(value: Mask<isize, N>) -> Mask<i64, N>

Converts to this type from the input type.
Sourceยง

impl<const N: usize> From<Mask<isize, N>> for Mask<i8, N>

Sourceยง

fn from(value: Mask<isize, N>) -> Mask<i8, N>

Converts to this type from the input type.
Sourceยง

impl<T, const N: usize> Not for Mask<T, N>
where T: MaskElement,

Sourceยง

type Output = Mask<T, N>

The resulting type after applying the ! operator.
Sourceยง

fn not(self) -> <Mask<T, N> as Not>::Output

Performs the unary ! operation. Read more
Sourceยง

impl<T, const N: usize> PartialEq for Mask<T, N>

Sourceยง

fn eq(&self, other: &Mask<T, N>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) ยท Sourceยง

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

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Sourceยง

impl<T, const N: usize> PartialOrd for Mask<T, N>

Sourceยง

fn partial_cmp(&self, other: &Mask<T, N>) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 (const: unstable) ยท Sourceยง

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

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 (const: unstable) ยท Sourceยง

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

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 (const: unstable) ยท Sourceยง

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

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 (const: unstable) ยท Sourceยง

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

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Sourceยง

impl<T, U, const N: usize> Select<Mask<T, N>> for Mask<U, N>
where T: MaskElement, U: MaskElement,

Sourceยง

fn select(self, true_values: Mask<T, N>, false_values: Mask<T, N>) -> Mask<T, N>

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)
Choose elements
Sourceยง

impl<T, const N: usize> Select<Mask<T, N>> for u64
where T: MaskElement,

Sourceยง

fn select(self, true_values: Mask<T, N>, false_values: Mask<T, N>) -> Mask<T, N>

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)
Choose elements
Sourceยง

impl<T, U, const N: usize> Select<Simd<T, N>> for Mask<U, N>
where T: SimdElement, U: MaskElement,

Sourceยง

fn select(self, true_values: Simd<T, N>, false_values: Simd<T, N>) -> Simd<T, N>

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)
Choose elements
Sourceยง

impl<const N: usize> SimdOrd for Mask<i16, N>

Sourceยง

fn simd_max(self, other: Mask<i16, N>) -> Mask<i16, N>

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)
Returns the element-wise maximum with other.
Sourceยง

fn simd_min(self, other: Mask<i16, N>) -> Mask<i16, N>

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)
Returns the element-wise minimum with other.
Sourceยง

fn simd_clamp(self, min: Mask<i16, N>, max: Mask<i16, N>) -> Mask<i16, N>

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)
Restrict each element to a certain interval. Read more
Sourceยง

impl<const N: usize> SimdOrd for Mask<i32, N>

Sourceยง

fn simd_max(self, other: Mask<i32, N>) -> Mask<i32, N>

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)
Returns the element-wise maximum with other.
Sourceยง

fn simd_min(self, other: Mask<i32, N>) -> Mask<i32, N>

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)
Returns the element-wise minimum with other.
Sourceยง

fn simd_clamp(self, min: Mask<i32, N>, max: Mask<i32, N>) -> Mask<i32, N>

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)
Restrict each element to a certain interval. Read more
Sourceยง

impl<const N: usize> SimdOrd for Mask<i64, N>

Sourceยง

fn simd_max(self, other: Mask<i64, N>) -> Mask<i64, N>

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)
Returns the element-wise maximum with other.
Sourceยง

fn simd_min(self, other: Mask<i64, N>) -> Mask<i64, N>

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)
Returns the element-wise minimum with other.
Sourceยง

fn simd_clamp(self, min: Mask<i64, N>, max: Mask<i64, N>) -> Mask<i64, N>

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)
Restrict each element to a certain interval. Read more
Sourceยง

impl<const N: usize> SimdOrd for Mask<i8, N>

Sourceยง

fn simd_max(self, other: Mask<i8, N>) -> Mask<i8, N>

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)
Returns the element-wise maximum with other.
Sourceยง

fn simd_min(self, other: Mask<i8, N>) -> Mask<i8, N>

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)
Returns the element-wise minimum with other.
Sourceยง

fn simd_clamp(self, min: Mask<i8, N>, max: Mask<i8, N>) -> Mask<i8, N>

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)
Restrict each element to a certain interval. Read more
Sourceยง

impl<const N: usize> SimdOrd for Mask<isize, N>

Sourceยง

fn simd_max(self, other: Mask<isize, N>) -> Mask<isize, N>

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)
Returns the element-wise maximum with other.
Sourceยง

fn simd_min(self, other: Mask<isize, N>) -> Mask<isize, N>

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)
Returns the element-wise minimum with other.
Sourceยง

fn simd_clamp(self, min: Mask<isize, N>, max: Mask<isize, N>) -> Mask<isize, N>

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)
Restrict each element to a certain interval. Read more
Sourceยง

impl<const N: usize> SimdPartialEq for Mask<i16, N>

Sourceยง

type Mask = Mask<i16, N>

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)
The mask type returned by each comparison.
Sourceยง

fn simd_eq(self, other: Mask<i16, N>) -> <Mask<i16, N> as SimdPartialEq>::Mask

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)
Test if each element is equal to the corresponding element in other.
Sourceยง

fn simd_ne(self, other: Mask<i16, N>) -> <Mask<i16, N> as SimdPartialEq>::Mask

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)
Test if each element is not equal to the corresponding element in other.
Sourceยง

impl<const N: usize> SimdPartialEq for Mask<i32, N>

Sourceยง

type Mask = Mask<i32, N>

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)
The mask type returned by each comparison.
Sourceยง

fn simd_eq(self, other: Mask<i32, N>) -> <Mask<i32, N> as SimdPartialEq>::Mask

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)
Test if each element is equal to the corresponding element in other.
Sourceยง

fn simd_ne(self, other: Mask<i32, N>) -> <Mask<i32, N> as SimdPartialEq>::Mask

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)
Test if each element is not equal to the corresponding element in other.
Sourceยง

impl<const N: usize> SimdPartialEq for Mask<i64, N>

Sourceยง

type Mask = Mask<i64, N>

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)
The mask type returned by each comparison.
Sourceยง

fn simd_eq(self, other: Mask<i64, N>) -> <Mask<i64, N> as SimdPartialEq>::Mask

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)
Test if each element is equal to the corresponding element in other.
Sourceยง

fn simd_ne(self, other: Mask<i64, N>) -> <Mask<i64, N> as SimdPartialEq>::Mask

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)
Test if each element is not equal to the corresponding element in other.
Sourceยง

impl<const N: usize> SimdPartialEq for Mask<i8, N>

Sourceยง

type Mask = Mask<i8, N>

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)
The mask type returned by each comparison.
Sourceยง

fn simd_eq(self, other: Mask<i8, N>) -> <Mask<i8, N> as SimdPartialEq>::Mask

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)
Test if each element is equal to the corresponding element in other.
Sourceยง

fn simd_ne(self, other: Mask<i8, N>) -> <Mask<i8, N> as SimdPartialEq>::Mask

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)
Test if each element is not equal to the corresponding element in other.
Sourceยง

impl<const N: usize> SimdPartialEq for Mask<isize, N>

Sourceยง

type Mask = Mask<isize, N>

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)
The mask type returned by each comparison.
Sourceยง

fn simd_eq( self, other: Mask<isize, N>, ) -> <Mask<isize, N> as SimdPartialEq>::Mask

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)
Test if each element is equal to the corresponding element in other.
Sourceยง

fn simd_ne( self, other: Mask<isize, N>, ) -> <Mask<isize, N> as SimdPartialEq>::Mask

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)
Test if each element is not equal to the corresponding element in other.
Sourceยง

impl<const N: usize> SimdPartialOrd for Mask<i16, N>

Sourceยง

fn simd_lt(self, other: Mask<i16, N>) -> <Mask<i16, N> as SimdPartialEq>::Mask

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)
Test if each element is less than the corresponding element in other.
Sourceยง

fn simd_le(self, other: Mask<i16, N>) -> <Mask<i16, N> as SimdPartialEq>::Mask

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)
Test if each element is less than or equal to the corresponding element in other.
Sourceยง

fn simd_gt(self, other: Mask<i16, N>) -> <Mask<i16, N> as SimdPartialEq>::Mask

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)
Test if each element is greater than the corresponding element in other.
Sourceยง

fn simd_ge(self, other: Mask<i16, N>) -> <Mask<i16, N> as SimdPartialEq>::Mask

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)
Test if each element is greater than or equal to the corresponding element in other.
Sourceยง

impl<const N: usize> SimdPartialOrd for Mask<i32, N>

Sourceยง

fn simd_lt(self, other: Mask<i32, N>) -> <Mask<i32, N> as SimdPartialEq>::Mask

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)
Test if each element is less than the corresponding element in other.
Sourceยง

fn simd_le(self, other: Mask<i32, N>) -> <Mask<i32, N> as SimdPartialEq>::Mask

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)
Test if each element is less than or equal to the corresponding element in other.
Sourceยง

fn simd_gt(self, other: Mask<i32, N>) -> <Mask<i32, N> as SimdPartialEq>::Mask

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)
Test if each element is greater than the corresponding element in other.
Sourceยง

fn simd_ge(self, other: Mask<i32, N>) -> <Mask<i32, N> as SimdPartialEq>::Mask

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)
Test if each element is greater than or equal to the corresponding element in other.
Sourceยง

impl<const N: usize> SimdPartialOrd for Mask<i64, N>

Sourceยง

fn simd_lt(self, other: Mask<i64, N>) -> <Mask<i64, N> as SimdPartialEq>::Mask

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)
Test if each element is less than the corresponding element in other.
Sourceยง

fn simd_le(self, other: Mask<i64, N>) -> <Mask<i64, N> as SimdPartialEq>::Mask

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)
Test if each element is less than or equal to the corresponding element in other.
Sourceยง

fn simd_gt(self, other: Mask<i64, N>) -> <Mask<i64, N> as SimdPartialEq>::Mask

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)
Test if each element is greater than the corresponding element in other.
Sourceยง

fn simd_ge(self, other: Mask<i64, N>) -> <Mask<i64, N> as SimdPartialEq>::Mask

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)
Test if each element is greater than or equal to the corresponding element in other.
Sourceยง

impl<const N: usize> SimdPartialOrd for Mask<i8, N>

Sourceยง

fn simd_lt(self, other: Mask<i8, N>) -> <Mask<i8, N> as SimdPartialEq>::Mask

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)
Test if each element is less than the corresponding element in other.
Sourceยง

fn simd_le(self, other: Mask<i8, N>) -> <Mask<i8, N> as SimdPartialEq>::Mask

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)
Test if each element is less than or equal to the corresponding element in other.
Sourceยง

fn simd_gt(self, other: Mask<i8, N>) -> <Mask<i8, N> as SimdPartialEq>::Mask

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)
Test if each element is greater than the corresponding element in other.
Sourceยง

fn simd_ge(self, other: Mask<i8, N>) -> <Mask<i8, N> as SimdPartialEq>::Mask

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)
Test if each element is greater than or equal to the corresponding element in other.
Sourceยง

impl<const N: usize> SimdPartialOrd for Mask<isize, N>

Sourceยง

fn simd_lt( self, other: Mask<isize, N>, ) -> <Mask<isize, N> as SimdPartialEq>::Mask

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)
Test if each element is less than the corresponding element in other.
Sourceยง

fn simd_le( self, other: Mask<isize, N>, ) -> <Mask<isize, N> as SimdPartialEq>::Mask

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)
Test if each element is less than or equal to the corresponding element in other.
Sourceยง

fn simd_gt( self, other: Mask<isize, N>, ) -> <Mask<isize, N> as SimdPartialEq>::Mask

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)
Test if each element is greater than the corresponding element in other.
Sourceยง

fn simd_ge( self, other: Mask<isize, N>, ) -> <Mask<isize, N> as SimdPartialEq>::Mask

๐Ÿ”ฌThis is a nightly-only experimental API. (portable_simd)
Test if each element is greater than or equal to the corresponding element in other.
Sourceยง

impl<T, const N: usize> Copy for Mask<T, N>
where T: MaskElement,

Auto Trait Implementationsยง

ยง

impl<T, const N: usize> Freeze for Mask<T, N>
where T: Freeze,

ยง

impl<T, const N: usize> RefUnwindSafe for Mask<T, N>
where T: RefUnwindSafe,

ยง

impl<T, const N: usize> Send for Mask<T, N>
where T: Send,

ยง

impl<T, const N: usize> Sync for Mask<T, N>
where T: Sync,

ยง

impl<T, const N: usize> Unpin for Mask<T, N>
where T: Unpin,

ยง

impl<T, const N: usize> UnsafeUnpin for Mask<T, N>
where T: UnsafeUnpin,

ยง

impl<T, const N: usize> UnwindSafe for Mask<T, N>
where T: UnwindSafe,

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> CloneToUninit for T
where T: Clone,

Sourceยง

unsafe fn clone_to_uninit(&self, dest: *mut u8)

๐Ÿ”ฌThis is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Sourceยง

impl<T> DebugExt<T> for T
where T: Debug,

Sourceยง

impl<T> Downcast for T
where T: Any,

Sourceยง

fn into_any(self: Box<T>) -> Box<dyn Any>

Convert Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.
Sourceยง

fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>

Convert Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be further downcast into Rc<ConcreteType> where ConcreteType implements Trait.
Sourceยง

fn as_any(&self) -> &(dyn Any + 'static)

Convert &Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &Anyโ€™s vtable from &Traitโ€™s.
Sourceยง

fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)

Convert &mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &mut Anyโ€™s vtable from &mut Traitโ€™s.
Sourceยง

impl<T> DowncastSync for T
where T: Any + Send + Sync,

Sourceยง

fn into_any_arc(self: Arc<T>) -> Arc<dyn Any + Send + Sync> โ“˜

Convert Arc<Trait> (where Trait: Downcast) to Arc<Any>. Arc<Any> can then be further downcast into Arc<ConcreteType> where ConcreteType implements Trait.
Sourceยง

impl<A> DynCastExt for A

Sourceยง

fn dyn_cast<T>( self, ) -> Result<<A as DynCastExtHelper<T>>::Target, <A as DynCastExtHelper<T>>::Source>
where A: DynCastExtHelper<T>, T: ?Sized,

Use this to cast from one trait object type to another. Read more
Sourceยง

fn dyn_upcast<T>(self) -> <A as DynCastExtAdvHelper<T, T>>::Target
where A: DynCastExtAdvHelper<T, T, Source = <A as DynCastExtAdvHelper<T, T>>::Target>, T: ?Sized,

Use this to upcast a trait to one of its supertraits. Read more
Sourceยง

fn dyn_cast_adv<F, T>( self, ) -> Result<<A as DynCastExtAdvHelper<F, T>>::Target, <A as DynCastExtAdvHelper<F, T>>::Source>
where A: DynCastExtAdvHelper<F, T>, F: ?Sized, T: ?Sized,

Use this to cast from one trait object type to another. This method is more customizable than the dyn_cast method. Here you can also specify the โ€œsourceโ€ trait from which the cast is defined. This can for example allow using casts from a supertrait of the current trait object. Read more
Sourceยง

fn dyn_cast_with_config<C>( self, ) -> Result<<A as DynCastExtAdvHelper<<C as DynCastConfig>::Source, <C as DynCastConfig>::Target>>::Target, <A as DynCastExtAdvHelper<<C as DynCastConfig>::Source, <C as DynCastConfig>::Target>>::Source>

Use this to cast from one trait object type to another. With this method the type parameter is a config type that uniquely specifies which cast should be preformed. Read more
Sourceยง

impl<T> From<T> for T

Sourceยง

fn from(t: T) -> T

Returns the argument unchanged.

Sourceยง

impl<T> Instrument for T

Sourceยง

fn instrument(self, span: Span) -> Instrumented<Self> โ“˜

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Sourceยง

fn in_current_span(self) -> Instrumented<Self> โ“˜

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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> IntoEither for T

Sourceยง

fn into_either(self, into_left: bool) -> Either<Self, Self> โ“˜

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Sourceยง

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> โ“˜
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Sourceยง

impl<T> Pointable for T

Sourceยง

const ALIGN: usize

The alignment of pointer.
Sourceยง

type Init = T

The type for initializers.
Sourceยง

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Sourceยง

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Sourceยง

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Sourceยง

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Sourceยง

impl<T> Same for T

Sourceยง

type Output = T

Should always be Self
Sourceยง

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

Sourceยง

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, U> TryFrom<U> for T
where U: Into<T>,

Sourceยง

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

Sourceยง

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<V, T> VZip<V> for T
where V: MultiLane<T>,

Sourceยง

fn vzip(self) -> V

Sourceยง

impl<T> WithSubscriber for T

Sourceยง

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> โ“˜
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Sourceยง

fn with_current_subscriber(self) -> WithDispatch<Self> โ“˜

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more