#[non_exhaustive]#[repr(C)]pub enum AxHashRuntimeBackend {
Scalar = 0,
Aarch64Neon = 1,
X86_64Avx2 = 2,
}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.
Trait Implementations§
Source§impl Clone for AxHashRuntimeBackend
impl Clone for AxHashRuntimeBackend
Source§fn clone(&self) -> AxHashRuntimeBackend
fn clone(&self) -> AxHashRuntimeBackend
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AxHashRuntimeBackend
impl Debug for AxHashRuntimeBackend
Source§impl From<RuntimeBackend> for AxHashRuntimeBackend
impl From<RuntimeBackend> for AxHashRuntimeBackend
Source§fn from(b: RuntimeBackend) -> Self
fn from(b: RuntimeBackend) -> Self
Converts to this type from the input type.
Source§impl PartialEq for AxHashRuntimeBackend
impl PartialEq for AxHashRuntimeBackend
Source§fn eq(&self, other: &AxHashRuntimeBackend) -> bool
fn eq(&self, other: &AxHashRuntimeBackend) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for AxHashRuntimeBackend
impl Eq for AxHashRuntimeBackend
impl StructuralPartialEq for AxHashRuntimeBackend
Auto Trait Implementations§
impl Freeze for AxHashRuntimeBackend
impl RefUnwindSafe for AxHashRuntimeBackend
impl Send for AxHashRuntimeBackend
impl Sync for AxHashRuntimeBackend
impl Unpin for AxHashRuntimeBackend
impl UnsafeUnpin for AxHashRuntimeBackend
impl UnwindSafe for AxHashRuntimeBackend
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