Struct vector_bool_char

#[repr(simd)]
pub struct vector_bool_char(pub(in ::core_arch::powerpc::altivec) [i8; 16]);

PowerPC-specific 128-bit wide vector mask of sixteen packed elements

Fields

0: [i8; 16]

Implementations

impl vector_bool_char

fn splat(value: i8) -> vector_bool_char

Put the same value in every lane.

const fn as_array(&self) -> &[i8; 16]

Returns an array reference containing the entire SIMD vector.

fn as_mut_array(&mut self) -> &mut [i8; 16]

Returns a mutable array reference containing the entire SIMD vector.

Trait Implementations

impl Clone for vector_bool_char

fn clone(&self) -> vector_bool_char

impl Copy for vector_bool_char

impl Debug for vector_bool_char

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

impl From<Simd<i8, 16>> for vector_bool_char

fn from(simd: Simd<i8, 16>) -> Self

impl From<SimdM<i8, 16>> for vector_bool_char

fn from(value: SimdM<i8, 16>) -> Self

impl TrivialClone for vector_bool_char

impl VectorAdd<vector_signed_char> for vector_bool_char

type Result = vector_signed_char;
unsafe fn vec_add(self, other: vector_signed_char) -> Self::Result

impl VectorAdd<vector_unsigned_char> for vector_bool_char

type Result = vector_unsigned_char;
unsafe fn vec_add(self, other: vector_unsigned_char) -> Self::Result

impl VectorAdds<vector_signed_char> for vector_bool_char

type Result = vector_signed_char;
unsafe fn vec_adds(self, b: vector_signed_char) -> Self::Result

impl VectorAdds<vector_unsigned_char> for vector_bool_char

type Result = vector_unsigned_char;
unsafe fn vec_adds(self, b: vector_unsigned_char) -> Self::Result

impl VectorAnd<vector_signed_char> for vector_bool_char

type Result = vector_signed_char;
unsafe fn vec_and(self, b: vector_signed_char) -> Self::Result

impl VectorAnd<vector_unsigned_char> for vector_bool_char

type Result = vector_unsigned_char;
unsafe fn vec_and(self, b: vector_unsigned_char) -> Self::Result

impl VectorAndc<vector_bool_char> for vector_bool_char

type Result = vector_bool_char;
unsafe fn vec_andc(self, b: vector_bool_char) -> Self::Result

impl VectorMax<vector_signed_char> for vector_bool_char

type Result = vector_signed_char;
unsafe fn vec_max(self, b: vector_signed_char) -> Self::Result

impl VectorMax<vector_unsigned_char> for vector_bool_char

type Result = vector_unsigned_char;
unsafe fn vec_max(self, b: vector_unsigned_char) -> Self::Result

impl VectorMergeh<vector_bool_char> for vector_bool_char

type Result = vector_bool_char;
unsafe fn vec_mergeh(self, b: vector_bool_char) -> Self::Result

impl VectorMergel<vector_bool_char> for vector_bool_char

type Result = vector_bool_char;
unsafe fn vec_mergel(self, b: vector_bool_char) -> Self::Result

impl VectorMin<vector_signed_char> for vector_bool_char

type Result = vector_signed_char;
unsafe fn vec_min(self, b: vector_signed_char) -> Self::Result

impl VectorMin<vector_unsigned_char> for vector_bool_char

type Result = vector_unsigned_char;
unsafe fn vec_min(self, b: vector_unsigned_char) -> Self::Result

impl VectorNand<vector_bool_char> for vector_bool_char

type Result = vector_bool_char;
unsafe fn vec_nand(self, b: vector_bool_char) -> Self::Result

impl VectorNeg for vector_bool_char

unsafe fn vec_neg(self) -> Self

impl VectorNor<vector_bool_char> for vector_bool_char

type Result = vector_bool_char;
unsafe fn vec_nor(self, b: vector_bool_char) -> Self::Result

impl VectorOr<vector_signed_char> for vector_bool_char

type Result = vector_signed_char;
unsafe fn vec_or(self, b: vector_signed_char) -> Self::Result

impl VectorOr<vector_unsigned_char> for vector_bool_char

type Result = vector_unsigned_char;
unsafe fn vec_or(self, b: vector_unsigned_char) -> Self::Result

impl VectorOrc<vector_bool_char> for vector_bool_char

type Result = vector_bool_char;
unsafe fn vec_orc(self, b: vector_bool_char) -> Self::Result

impl VectorPerm for vector_bool_char

unsafe fn vec_vperm(self, b: Self, c: vector_unsigned_char) -> Self

impl VectorSel<vector_bool_char> for vector_bool_char

unsafe fn vec_sel(self, b: Self, c: vector_bool_char) -> Self

impl VectorSel<vector_unsigned_char> for vector_bool_char

unsafe fn vec_sel(self, b: Self, c: vector_unsigned_char) -> Self

impl VectorSld for vector_bool_char

unsafe fn vec_sld<const UIMM4: i32>(self, b: Self) -> Self
unsafe fn vec_sldw<const UIMM2: i32>(self, b: Self) -> Self

impl VectorSplat for vector_bool_char

unsafe fn vec_splat<const IMM: u32>(self) -> Self

impl VectorSub<vector_signed_char> for vector_bool_char

type Result = vector_signed_char;
unsafe fn vec_sub(self, b: vector_signed_char) -> Self::Result

impl VectorSub<vector_unsigned_char> for vector_bool_char

type Result = vector_unsigned_char;
unsafe fn vec_sub(self, b: vector_unsigned_char) -> Self::Result

impl VectorSubs<vector_signed_char> for vector_bool_char

type Result = vector_signed_char;
unsafe fn vec_subs(self, b: vector_signed_char) -> Self::Result

impl VectorSubs<vector_unsigned_char> for vector_bool_char

type Result = vector_unsigned_char;
unsafe fn vec_subs(self, b: vector_unsigned_char) -> Self::Result

impl VectorUnpackh for vector_bool_char

type Result = vector_bool_short;
unsafe fn vec_unpackh(self) -> Self::Result

impl VectorUnpackl for vector_bool_char

type Result = vector_bool_short;
unsafe fn vec_unpackl(self) -> Self::Result

impl VectorXor<vector_signed_char> for vector_bool_char

type Result = vector_signed_char;
unsafe fn vec_xor(self, b: vector_signed_char) -> Self::Result

impl VectorXor<vector_unsigned_char> for vector_bool_char

type Result = vector_unsigned_char;
unsafe fn vec_xor(self, b: vector_unsigned_char) -> Self::Result

Auto Trait Implementations

impl Freeze for vector_bool_char

impl RefUnwindSafe for vector_bool_char

impl Send for vector_bool_char

impl Sync for vector_bool_char

impl Unpin for vector_bool_char

impl UnsafeUnpin for vector_bool_char

impl UnwindSafe for vector_bool_char

Blanket Implementations

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

fn type_id(&self) -> TypeId

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

fn borrow(&self) -> &T

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

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

impl<T> CloneToUninit for vector_bool_char where T: Clone,

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

impl<T> From<T> for vector_bool_char

fn from(t: T) -> T

Returns the argument unchanged.

impl<T> Printable for vector_bool_char where T: Copy + Debug,

impl<T> SizeHint for vector_bool_char where T: ?Sized,

fn lower_bound(&self) -> usize
fn upper_bound(&self) -> Option<usize>

impl<T> SizedTypeProperties for vector_bool_char

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

fn into(self) -> U

Calls U::from(self).

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

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

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

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

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