#[non_exhaustive]pub enum TargetFeatures {
Unknown,
Features(BTreeSet<Cow<'static, str>>),
All,
}
Expand description
A set of target features to match.
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.
Unknown
The target features are unknown.
Features(BTreeSet<Cow<'static, str>>)
Only match the specified features.
All
Match all features.
Implementations§
source§impl TargetFeatures
impl TargetFeatures
Trait Implementations§
source§impl Arbitrary for TargetFeatures
Available on crate feature proptest1
only.
impl Arbitrary for TargetFeatures
Available on crate feature
proptest1
only.The Arbitrary
implementation for TargetFeatures
uses a predefined list of features.
source§type Parameters = ()
type Parameters = ()
The type of parameters that
arbitrary_with
accepts for configuration
of the generated Strategy
. Parameters must implement Default
.source§type Strategy = BoxedStrategy<TargetFeatures>
type Strategy = BoxedStrategy<TargetFeatures>
The type of
Strategy
used to generate values of type Self
.source§fn arbitrary_with(_args: Self::Parameters) -> Self::Strategy
fn arbitrary_with(_args: Self::Parameters) -> Self::Strategy
source§impl Clone for TargetFeatures
impl Clone for TargetFeatures
source§fn clone(&self) -> TargetFeatures
fn clone(&self) -> TargetFeatures
Returns a copy of the value. Read more
1.0.0 · 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 TargetFeatures
impl Debug for TargetFeatures
source§impl Hash for TargetFeatures
impl Hash for TargetFeatures
source§impl Ord for TargetFeatures
impl Ord for TargetFeatures
source§fn cmp(&self, other: &TargetFeatures) -> Ordering
fn cmp(&self, other: &TargetFeatures) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for TargetFeatures
impl PartialEq for TargetFeatures
source§impl PartialOrd for TargetFeatures
impl PartialOrd for TargetFeatures
impl Eq for TargetFeatures
impl StructuralPartialEq for TargetFeatures
Auto Trait Implementations§
impl Freeze for TargetFeatures
impl RefUnwindSafe for TargetFeatures
impl Send for TargetFeatures
impl Sync for TargetFeatures
impl Unpin for TargetFeatures
impl UnwindSafe for TargetFeatures
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)