#[repr(transparent)]pub struct AvxF32(pub __m256);Expand description
AVX f32 vector type (8 lanes).
Tuple Fields§
§0: __m256Implementations§
Trait Implementations§
Source§impl SimdComplex for AvxF32
impl SimdComplex for AvxF32
Source§impl SimdVector for AvxF32
impl SimdVector for AvxF32
impl Copy for AvxF32
impl Send for AvxF32
impl Sync for AvxF32
Auto Trait Implementations§
impl Freeze for AvxF32
impl RefUnwindSafe for AvxF32
impl Unpin for AvxF32
impl UnwindSafe for AvxF32
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more