Enum vectoreyes::VectorBackend
source · [−]#[non_exhaustive]
pub enum VectorBackend {
Scalar,
Avx2 {
micro_architecture: MicroArchitecture,
},
}
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Scalar
Avx2
Fields
micro_architecture: MicroArchitecture
Trait Implementations
sourceimpl Clone for VectorBackend
impl Clone for VectorBackend
sourcefn clone(&self) -> VectorBackend
fn clone(&self) -> VectorBackend
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for VectorBackend
impl Debug for VectorBackend
sourceimpl Hash for VectorBackend
impl Hash for VectorBackend
sourceimpl PartialEq<VectorBackend> for VectorBackend
impl PartialEq<VectorBackend> for VectorBackend
sourcefn eq(&self, other: &VectorBackend) -> bool
fn eq(&self, other: &VectorBackend) -> bool
impl Copy for VectorBackend
impl Eq for VectorBackend
impl StructuralEq for VectorBackend
impl StructuralPartialEq for VectorBackend
Auto Trait Implementations
impl RefUnwindSafe for VectorBackend
impl Send for VectorBackend
impl Sync for VectorBackend
impl Unpin for VectorBackend
impl UnwindSafe for VectorBackend
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more