Struct fake_simd::u32x4
[−]
[src]
pub struct u32x4(pub u32, pub u32, pub u32, pub u32);
Trait Implementations
impl Clone for u32x4
[src]
fn clone(&self) -> u32x4
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Copy for u32x4
[src]
impl PartialEq for u32x4
[src]
fn eq(&self, __arg_0: &u32x4) -> bool
[src]
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &u32x4) -> bool
[src]
This method tests for !=
.
impl Eq for u32x4
[src]
impl Add for u32x4
[src]
type Output = u32x4
The resulting type after applying the +
operator.
fn add(self, rhs: u32x4) -> u32x4
[src]
Performs the +
operation.
impl Sub for u32x4
[src]
type Output = u32x4
The resulting type after applying the -
operator.
fn sub(self, rhs: u32x4) -> u32x4
[src]
Performs the -
operation.
impl BitAnd for u32x4
[src]
type Output = u32x4
The resulting type after applying the &
operator.
fn bitand(self, rhs: u32x4) -> u32x4
[src]
Performs the &
operation.
impl BitOr for u32x4
[src]
type Output = u32x4
The resulting type after applying the |
operator.
fn bitor(self, rhs: u32x4) -> u32x4
[src]
Performs the |
operation.
impl BitXor for u32x4
[src]
type Output = u32x4
The resulting type after applying the ^
operator.
fn bitxor(self, rhs: u32x4) -> u32x4
[src]
Performs the ^
operation.
impl Shl<usize> for u32x4
[src]
type Output = u32x4
The resulting type after applying the <<
operator.
fn shl(self, amt: usize) -> u32x4
[src]
Performs the <<
operation.
impl Shl<u32x4> for u32x4
[src]
type Output = u32x4
The resulting type after applying the <<
operator.
fn shl(self, rhs: u32x4) -> u32x4
[src]
Performs the <<
operation.
impl Shr<usize> for u32x4
[src]
type Output = u32x4
The resulting type after applying the >>
operator.
fn shr(self, amt: usize) -> u32x4
[src]
Performs the >>
operation.