[−][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 CpuFeatures.
Trait Implementations
impl<O: Into<EnumSet<CpuFeature>>> BitAnd<O> for CpuFeature[src]
type Output = EnumSet<CpuFeature>
The resulting type after applying the & operator.
pub 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.
pub 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.
pub fn bitxor(self, other: O) -> Self::Output[src]
impl Clone for CpuFeature[src]
pub fn clone(&self) -> Self[src]
pub 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.
pub const ALL_BITS: Self::Repr[src]
pub fn enum_into_u32(self) -> u32[src]
pub 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.
pub fn from_str(s: &str) -> Result<Self, Self::Err>[src]
impl Hash for CpuFeature[src]
pub fn hash<__H: Hasher>(&self, state: &mut __H)[src]
pub 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.
pub fn not(self) -> Self::Output[src]
impl PartialEq<CpuFeature> for CpuFeature[src]
pub fn eq(&self, other: &Self) -> bool[src]
#[must_use]pub fn ne(&self, other: &Rhs) -> bool1.0.0[src]
impl PartialEq<EnumSet<CpuFeature>> for CpuFeature[src]
pub fn eq(&self, other: &EnumSet<CpuFeature>) -> bool[src]
#[must_use]pub fn ne(&self, other: &Rhs) -> bool1.0.0[src]
impl<O: Into<EnumSet<CpuFeature>>> Sub<O> for CpuFeature[src]
type Output = EnumSet<CpuFeature>
The resulting type after applying the - operator.
pub fn sub(self, other: O) -> Self::Output[src]
impl ToString for CpuFeature[src]
Auto Trait Implementations
impl RefUnwindSafe for CpuFeature[src]
impl Send for CpuFeature[src]
impl Sync for CpuFeature[src]
impl Unpin for CpuFeature[src]
impl UnwindSafe for CpuFeature[src]
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,
pub 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,
pub 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.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
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.
pub 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>,