pub trait ToBitMask: Sealed {
    type BitMask;

    // Required methods
    fn to_bitmask(self) -> Self::BitMask;
    fn from_bitmask(bitmask: Self::BitMask) -> Self;
}
🔬This is a nightly-only experimental API. (portable_simd)
Available on non-crate feature miri-test-libstd only.
Expand description

Converts masks to and from integer bitmasks.

Each bit of the bitmask corresponds to a mask lane, starting with the LSB.

Required Associated Types§

source

type BitMask

🔬This is a nightly-only experimental API. (portable_simd)

The integer bitmask type.

Required Methods§

source

fn to_bitmask(self) -> Self::BitMask

🔬This is a nightly-only experimental API. (portable_simd)

Converts a mask to a bitmask.

source

fn from_bitmask(bitmask: Self::BitMask) -> Self

🔬This is a nightly-only experimental API. (portable_simd)

Converts a bitmask to a mask.

Implementors§

source§

impl<T> ToBitMask for Mask<T, 1>where T: MaskElement,

§

type BitMask = u8

source§

impl<T> ToBitMask for Mask<T, 2>where T: MaskElement,

§

type BitMask = u8

source§

impl<T> ToBitMask for Mask<T, 4>where T: MaskElement,

§

type BitMask = u8

source§

impl<T> ToBitMask for Mask<T, 8>where T: MaskElement,

§

type BitMask = u8

source§

impl<T> ToBitMask for Mask<T, 16>where T: MaskElement,

§

type BitMask = u16

source§

impl<T> ToBitMask for Mask<T, 32>where T: MaskElement,

§

type BitMask = u32

source§

impl<T> ToBitMask for Mask<T, 64>where T: MaskElement,

§

type BitMask = u64