[][src]Struct simba::simd::WideBoolF32x4

#[repr(transparent)]pub struct WideBoolF32x4(pub f32x4);

An SIMD boolean structure associated to wide::f32x4 that implements all the relevant traits from simba.

This is needed to overcome the orphan rules.

Trait Implementations

impl BitAnd<WideBoolF32x4> for WideBoolF32x4[src]

type Output = Self

The resulting type after applying the & operator.

impl BitOr<WideBoolF32x4> for WideBoolF32x4[src]

type Output = Self

The resulting type after applying the | operator.

impl BitXor<WideBoolF32x4> for WideBoolF32x4[src]

type Output = Self

The resulting type after applying the ^ operator.

impl Clone for WideBoolF32x4[src]

impl Copy for WideBoolF32x4[src]

impl Debug for WideBoolF32x4[src]

impl From<[bool; 4]> for WideBoolF32x4[src]

impl PartialEq<WideBoolF32x4> for WideBoolF32x4[src]

impl PrimitiveSimdValue for WideBoolF32x4[src]

impl SimdBool for WideBoolF32x4[src]

impl SimdValue for WideBoolF32x4[src]

type Element = bool

The type of the elements of each lane of this SIMD value.

type SimdBool = Self

Type of the result of comparing two SIMD values like self.

impl SubsetOf<WideBoolF32x4> for WideBoolF32x4[src]

Auto Trait Implementations

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, U> Cast<U> for T where
    U: FromCast<T>, 

impl<T> From<T> for T[src]

impl<T> FromBits<T> for T

impl<T> FromCast<T> for T

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> IntoBits<U> for T where
    U: FromBits<T>, 

impl<Src, Dst> LosslessTryInto<Dst> for Src where
    Dst: LosslessTryFrom<Src>, 
[src]

impl<Src, Dst> LossyInto<Dst> for Src where
    Dst: LossyFrom<Src>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,