pub enum AvxLevel {
Avx,
Avx2,
Avx512f,
Avx512bw,
Avx512dq,
}
Expand description
AVX instruction set levels
Variants§
Trait Implementations§
Source§impl Ord for AvxLevel
impl Ord for AvxLevel
Source§impl PartialOrd for AvxLevel
impl PartialOrd for AvxLevel
impl Copy for AvxLevel
impl Eq for AvxLevel
impl StructuralPartialEq for AvxLevel
Auto Trait Implementations§
impl Freeze for AvxLevel
impl RefUnwindSafe for AvxLevel
impl Send for AvxLevel
impl Sync for AvxLevel
impl Unpin for AvxLevel
impl UnwindSafe for AvxLevel
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