[][src]Struct simdeez::scalar::F64x1

pub struct F64x1(pub f64);

Trait Implementations

impl Add<F64x1> for F64x1[src]

type Output = F64x1

The resulting type after applying the + operator.

impl AddAssign<F64x1> for F64x1[src]

impl BitAnd<F64x1> for F64x1[src]

type Output = F64x1

The resulting type after applying the & operator.

impl BitAndAssign<F64x1> for F64x1[src]

impl BitOr<F64x1> for F64x1[src]

type Output = F64x1

The resulting type after applying the | operator.

impl BitOrAssign<F64x1> for F64x1[src]

impl BitXor<F64x1> for F64x1[src]

type Output = F64x1

The resulting type after applying the ^ operator.

impl BitXorAssign<F64x1> for F64x1[src]

impl Clone for F64x1[src]

impl Copy for F64x1[src]

impl Debug for F64x1[src]

impl Div<F64x1> for F64x1[src]

type Output = F64x1

The resulting type after applying the / operator.

impl DivAssign<F64x1> for F64x1[src]

impl Index<usize> for F64x1[src]

type Output = f64

The returned type after indexing.

impl IndexMut<usize> for F64x1[src]

impl Mul<F64x1> for F64x1[src]

type Output = F64x1

The resulting type after applying the * operator.

impl MulAssign<F64x1> for F64x1[src]

impl Not for F64x1[src]

type Output = F64x1

The resulting type after applying the ! operator.

impl Shl<i32> for F64x1[src]

type Output = F64x1

The resulting type after applying the << operator.

impl ShlAssign<i32> for F64x1[src]

impl Shr<i32> for F64x1[src]

type Output = F64x1

The resulting type after applying the >> operator.

impl ShrAssign<i32> for F64x1[src]

impl SimdBase<F64x1, f64> for F64x1[src]

impl SimdFloat<F64x1, f64> for F64x1[src]

impl Sub<F64x1> for F64x1[src]

type Output = F64x1

The resulting type after applying the - operator.

impl SubAssign<F64x1> for F64x1[src]

Auto Trait Implementations

impl Send for F64x1

impl Sync for F64x1

impl Unpin for F64x1

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> From<T> for T[src]

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

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.