#[repr(simd)]
pub struct vector_float(f32, f32, f32, f32);
🔬This is a nightly-only experimental API. (stdsimd #48556)
Available on PowerPC or PowerPC-64 only.
Expand description

PowerPC-specific 128-bit wide vector of four packed f32

Tuple Fields§

§0: f32
🔬This is a nightly-only experimental API. (stdsimd #48556)
§1: f32
🔬This is a nightly-only experimental API. (stdsimd #48556)
§2: f32
🔬This is a nightly-only experimental API. (stdsimd #48556)
§3: f32
🔬This is a nightly-only experimental API. (stdsimd #48556)

Trait Implementations§

source§

impl Clone for vector_float

source§

fn clone(&self) -> vector_float

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for vector_float

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<f32x4> for vector_float

source§

fn from(v: f32x4) -> Self

Converts to this type from the input type.
source§

impl Neg for vector_float

§

type Output = vector_float

The resulting type after applying the - operator.
source§

fn neg(self) -> Self::Output

Performs the unary - operation. Read more
source§

impl VectorAbs for vector_float

source§

unsafe fn vec_abs(self) -> Self

🔬This is a nightly-only experimental API. (stdsimd #48556)
source§

impl VectorAdd<vector_float> for vector_float

§

type Result = vector_float

🔬This is a nightly-only experimental API. (stdsimd #48556)
source§

unsafe fn vec_add(self, other: vector_float) -> Self::Result

🔬This is a nightly-only experimental API. (stdsimd #48556)
source§

impl VectorAllEq<vector_float> for vector_float

§

type Result = bool

🔬This is a nightly-only experimental API. (stdsimd #48556)
source§

unsafe fn vec_all_eq(self, b: vector_float) -> Self::Result

🔬This is a nightly-only experimental API. (stdsimd #48556)
source§

impl VectorAllGe<vector_float> for vector_float

§

type Result = bool

🔬This is a nightly-only experimental API. (stdsimd #48556)
source§

unsafe fn vec_all_ge(self, b: vector_float) -> Self::Result

🔬This is a nightly-only experimental API. (stdsimd #48556)
source§

impl VectorAllGt<vector_float> for vector_float

§

type Result = bool

🔬This is a nightly-only experimental API. (stdsimd #48556)
source§

unsafe fn vec_all_gt(self, b: vector_float) -> Self::Result

🔬This is a nightly-only experimental API. (stdsimd #48556)
source§

impl VectorAllNe<vector_float> for vector_float

§

type Result = bool

🔬This is a nightly-only experimental API. (stdsimd #48556)
source§

unsafe fn vec_all_ne(self, b: vector_float) -> Self::Result

🔬This is a nightly-only experimental API. (stdsimd #48556)
source§

impl VectorAnyEq<vector_float> for vector_float

§

type Result = bool

🔬This is a nightly-only experimental API. (stdsimd #48556)
source§

unsafe fn vec_any_eq(self, b: vector_float) -> Self::Result

🔬This is a nightly-only experimental API. (stdsimd #48556)
source§

impl VectorAnyGe<vector_float> for vector_float

§

type Result = bool

🔬This is a nightly-only experimental API. (stdsimd #48556)
source§

unsafe fn vec_any_ge(self, b: vector_float) -> Self::Result

🔬This is a nightly-only experimental API. (stdsimd #48556)
source§

impl VectorAnyGt<vector_float> for vector_float

§

type Result = bool

🔬This is a nightly-only experimental API. (stdsimd #48556)
source§

unsafe fn vec_any_gt(self, b: vector_float) -> Self::Result

🔬This is a nightly-only experimental API. (stdsimd #48556)
source§

impl VectorAnyNe<vector_float> for vector_float

§

type Result = bool

🔬This is a nightly-only experimental API. (stdsimd #48556)
source§

unsafe fn vec_any_ne(self, b: vector_float) -> Self::Result

🔬This is a nightly-only experimental API. (stdsimd #48556)
source§

impl VectorMergeh<vector_float> for vector_float

§

type Result = vector_float

🔬This is a nightly-only experimental API. (stdsimd #48556)
source§

unsafe fn vec_mergeh(self, b: vector_float) -> Self::Result

🔬This is a nightly-only experimental API. (stdsimd #48556)
source§

impl VectorMergel<vector_float> for vector_float

§

type Result = vector_float

🔬This is a nightly-only experimental API. (stdsimd #48556)
source§

unsafe fn vec_mergel(self, b: vector_float) -> Self::Result

🔬This is a nightly-only experimental API. (stdsimd #48556)
source§

impl VectorPerm for vector_float

source§

unsafe fn vec_vperm(self, b: Self, c: vector_unsigned_char) -> Self

🔬This is a nightly-only experimental API. (stdsimd #48556)
source§

impl VectorSub<vector_float> for vector_float

§

type Result = vector_float

🔬This is a nightly-only experimental API. (stdsimd #48556)
source§

unsafe fn vec_sub(self, b: vector_float) -> Self::Result

🔬This is a nightly-only experimental API. (stdsimd #48556)
source§

impl Copy for vector_float

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> SizedTypeProperties for T

source§

const IS_ZST: bool = _

🔬This is a nightly-only experimental API. (sized_type_properties)
true if this type requires no storage. false if its size is greater than zero. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> Printable for Twhere T: Copy + Debug,