[−][src]Enum wasmer_compiler::CpuFeature
The nomenclature is inspired by the cpuid
crate.
The list of supported features was initially retrieved from
cranelift-native
.
The CpuFeature
enum values are likely to grow closer to the
original cpuid
. However, we prefer to start small and grow from there.
If you would like to use a flag that doesn't exist yet here, please open a PR.
Variants
Implementations
impl CpuFeature
[src]
pub fn for_host() -> EnumSet<Self>
[src]
Retrieves the features for the current Host
pub fn set() -> EnumSet<Self>
[src]
Retrieves an empty set of CpuFeature
s.
Trait Implementations
impl<O: Into<EnumSet<CpuFeature>>> BitAnd<O> for CpuFeature
[src]
type Output = EnumSet<CpuFeature>
The resulting type after applying the &
operator.
fn bitand(self, other: O) -> Self::Output
[src]
impl<O: Into<EnumSet<CpuFeature>>> BitOr<O> for CpuFeature
[src]
type Output = EnumSet<CpuFeature>
The resulting type after applying the |
operator.
fn bitor(self, other: O) -> Self::Output
[src]
impl<O: Into<EnumSet<CpuFeature>>> BitXor<O> for CpuFeature
[src]
type Output = EnumSet<CpuFeature>
The resulting type after applying the ^
operator.
fn bitxor(self, other: O) -> Self::Output
[src]
impl Clone for CpuFeature
[src]
fn clone(&self) -> Self
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Copy for CpuFeature
[src]
impl Debug for CpuFeature
[src]
impl EnumSetType for CpuFeature
[src]
impl EnumSetTypePrivate for CpuFeature
[src]
type Repr = u16
The underlying type used to store the bitset.
const ALL_BITS: Self::Repr
[src]
fn enum_into_u32(self) -> u32
[src]
unsafe fn enum_from_u32(val: u32) -> Self
[src]
impl Eq for CpuFeature
[src]
impl FromStr for CpuFeature
[src]
type Err = ParseCpuFeatureError
The associated error which can be returned from parsing.
fn from_str(s: &str) -> Result<Self, Self::Err>
[src]
impl Hash for CpuFeature
[src]
fn hash<__H: Hasher>(&self, state: &mut __H)
[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
impl Not for CpuFeature
[src]
type Output = EnumSet<CpuFeature>
The resulting type after applying the !
operator.
fn not(self) -> Self::Output
[src]
impl PartialEq<CpuFeature> for CpuFeature
[src]
impl PartialEq<EnumSet<CpuFeature>> for CpuFeature
[src]
fn eq(&self, other: &EnumSet<CpuFeature>) -> bool
[src]
#[must_use]fn ne(&self, other: &Rhs) -> bool
1.0.0[src]
impl<O: Into<EnumSet<CpuFeature>>> Sub<O> for CpuFeature
[src]
type Output = EnumSet<CpuFeature>
The resulting type after applying the -
operator.
fn sub(self, other: O) -> Self::Output
[src]
impl ToString for CpuFeature
[src]
Auto Trait Implementations
impl RefUnwindSafe for CpuFeature
impl Send for CpuFeature
impl Sync for CpuFeature
impl Unpin for CpuFeature
impl UnwindSafe for CpuFeature
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<Q, K> Equivalent<K> for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
[src]
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
fn equivalent(&self, key: &K) -> bool
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T> ToString for T where
T: Display + ?Sized,
[src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,