[][src]Struct simba::simd::WideF32x4

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

A wrapper type of wide::f32x4 that implements all the relevant traits from num and simba.

This is needed to overcome the orphan rules.

Trait Implementations

impl Add<WideF32x4> for WideF32x4[src]

type Output = Self

The resulting type after applying the + operator.

impl AddAssign<WideF32x4> for WideF32x4[src]

impl Clone for WideF32x4[src]

impl Copy for WideF32x4[src]

impl Debug for WideF32x4[src]

impl Div<WideF32x4> for WideF32x4[src]

type Output = Self

The resulting type after applying the / operator.

impl DivAssign<WideF32x4> for WideF32x4[src]

impl Field for WideF32x4[src]

impl From<[f32; 4]> for WideF32x4[src]

impl FromPrimitive for WideF32x4[src]

impl Mul<WideF32x4> for WideF32x4[src]

type Output = Self

The resulting type after applying the * operator.

impl MulAssign<WideF32x4> for WideF32x4[src]

impl Neg for WideF32x4[src]

type Output = Self

The resulting type after applying the - operator.

impl Num for WideF32x4[src]

type FromStrRadixErr = <f32 as Num>::FromStrRadixErr

impl One for WideF32x4[src]

impl PartialEq<WideF32x4> for WideF32x4[src]

impl PrimitiveSimdValue for WideF32x4[src]

impl Rem<WideF32x4> for WideF32x4[src]

type Output = Self

The resulting type after applying the % operator.

impl RemAssign<WideF32x4> for WideF32x4[src]

impl SimdComplexField for WideF32x4[src]

type SimdRealField = Self

Type of the coefficients of a complex number.

impl SimdPartialOrd for WideF32x4[src]

impl SimdRealField for WideF32x4[src]

impl SimdSigned for WideF32x4[src]

impl SimdValue for WideF32x4[src]

type Element = f32

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

type SimdBool = WideBoolF32x4

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

impl Sub<WideF32x4> for WideF32x4[src]

type Output = Self

The resulting type after applying the - operator.

impl SubAssign<WideF32x4> for WideF32x4[src]

impl SubsetOf<WideF32x4> for u8[src]

impl SubsetOf<WideF32x4> for u16[src]

impl SubsetOf<WideF32x4> for f32[src]

impl SubsetOf<WideF32x4> for f64[src]

impl SubsetOf<WideF32x4> for WideF32x4[src]

impl SubsetOf<WideF32x4> for u32[src]

impl SubsetOf<WideF32x4> for u64[src]

impl SubsetOf<WideF32x4> for usize[src]

impl SubsetOf<WideF32x4> for i8[src]

impl SubsetOf<WideF32x4> for i16[src]

impl SubsetOf<WideF32x4> for i32[src]

impl SubsetOf<WideF32x4> for i64[src]

impl SubsetOf<WideF32x4> for isize[src]

impl Zero for WideF32x4[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> FromCast<T> for T

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

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> NumAssign for T where
    T: Num + NumAssignOps<T>, 
[src]

impl<T, Rhs> NumAssignOps<Rhs> for T where
    T: AddAssign<Rhs> + SubAssign<Rhs> + MulAssign<Rhs> + DivAssign<Rhs> + RemAssign<Rhs>, 
[src]

impl<T, Rhs, Output> NumOps<Rhs, Output> for T where
    T: Sub<Rhs, Output = Output> + Mul<Rhs, Output = Output> + Div<Rhs, Output = Output> + Add<Rhs, Output = Output> + Rem<Rhs, Output = Output>, 
[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>,