[−][src]Enum target_spec::TargetFeatures
A set of target features to match.
Variants (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.
The target features are unknown.
Only match the specified features.
Match all features.
Implementations
impl<'a> TargetFeatures<'a>[src]
pub fn features(features: &[&'a str]) -> Self[src]
Creates a new TargetFeatures which matches some features.
pub fn none() -> Self[src]
Creates a new TargetFeatures which doesn't match any features.
pub fn matches(&self, feature: &str) -> Option<bool>[src]
Returns Some(true) if this feature is a match, Some(false) if it isn't, and None if
the set of target features is unknown.
Trait Implementations
impl Arbitrary for TargetFeatures<'static>[src]
The Arbitrary implementation for TargetFeatures uses a predefined list of features.
type Parameters = ()
The type of parameters that arbitrary_with accepts for configuration
of the generated Strategy. Parameters must implement Default. Read more
type Strategy = BoxedStrategy<Self>
pub fn arbitrary_with(_args: Self::Parameters) -> Self::Strategy[src]
pub fn arbitrary() -> Self::Strategy[src]
impl<'a> Clone for TargetFeatures<'a>[src]
pub fn clone(&self) -> TargetFeatures<'a>[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl<'a> Debug for TargetFeatures<'a>[src]
impl<'a> Eq for TargetFeatures<'a>[src]
impl<'a> PartialEq<TargetFeatures<'a>> for TargetFeatures<'a>[src]
pub fn eq(&self, other: &TargetFeatures<'a>) -> bool[src]
pub fn ne(&self, other: &TargetFeatures<'a>) -> bool[src]
impl<'a> StructuralEq for TargetFeatures<'a>[src]
impl<'a> StructuralPartialEq for TargetFeatures<'a>[src]
Auto Trait Implementations
impl<'a> RefUnwindSafe for TargetFeatures<'a>
impl<'a> Send for TargetFeatures<'a>
impl<'a> Sync for TargetFeatures<'a>
impl<'a> Unpin for TargetFeatures<'a>
impl<'a> UnwindSafe for TargetFeatures<'a>
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<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>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,