[][src]Struct simdeez::overloads::I64x1

pub struct I64x1(pub i64);

Trait Implementations

impl SimdBase<I64x1, i64> for I64x1[src]

impl Debug for I64x1[src]

impl Sub<I64x1> for I64x1[src]

type Output = I64x1

The resulting type after applying the - operator.

impl Add<I64x1> for I64x1[src]

type Output = I64x1

The resulting type after applying the + operator.

impl Mul<I64x1> for I64x1[src]

type Output = I64x1

The resulting type after applying the * operator.

impl AddAssign<I64x1> for I64x1[src]

impl SubAssign<I64x1> for I64x1[src]

impl MulAssign<I64x1> for I64x1[src]

impl Not for I64x1[src]

type Output = I64x1

The resulting type after applying the ! operator.

impl BitAnd<I64x1> for I64x1[src]

type Output = I64x1

The resulting type after applying the & operator.

impl BitOr<I64x1> for I64x1[src]

type Output = I64x1

The resulting type after applying the | operator.

impl BitXor<I64x1> for I64x1[src]

type Output = I64x1

The resulting type after applying the ^ operator.

impl Shl<i32> for I64x1[src]

type Output = I64x1

The resulting type after applying the << operator.

impl Shr<i32> for I64x1[src]

type Output = I64x1

The resulting type after applying the >> operator.

impl BitAndAssign<I64x1> for I64x1[src]

impl BitOrAssign<I64x1> for I64x1[src]

impl BitXorAssign<I64x1> for I64x1[src]

impl ShlAssign<i32> for I64x1[src]

impl ShrAssign<i32> for I64x1[src]

impl Index<usize> for I64x1[src]

type Output = i64

The returned type after indexing.

impl IndexMut<usize> for I64x1[src]

impl Copy for I64x1[src]

impl Clone for I64x1[src]

Auto Trait Implementations

impl Unpin for I64x1

impl Send for I64x1

impl Sync for I64x1

Blanket Implementations

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

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

type Error = !

The type returned in the event of a conversion error.

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

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<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]