Available on crate feature
summaries only.Expand description
An owned, serializable version of TargetFeatures.
This type can be serialized and deserialized using serde.
Requires the summaries feature to be enabled.
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.
This is the default.
Features(BTreeSet<String>)
Only match the specified features.
All
Match all features.
Implementations
sourceimpl TargetFeaturesSummary
impl TargetFeaturesSummary
sourcepub fn new(target_features: &TargetFeatures) -> Self
pub fn new(target_features: &TargetFeatures) -> Self
Creates a new TargetFeaturesSummary from a TargetFeatures.
sourcepub fn to_target_features(&self) -> TargetFeatures
pub fn to_target_features(&self) -> TargetFeatures
Converts self to a TargetFeatures instance.
Trait Implementations
sourceimpl Clone for TargetFeaturesSummary
impl Clone for TargetFeaturesSummary
sourcefn clone(&self) -> TargetFeaturesSummary
fn clone(&self) -> TargetFeaturesSummary
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for TargetFeaturesSummary
impl Debug for TargetFeaturesSummary
sourceimpl Default for TargetFeaturesSummary
impl Default for TargetFeaturesSummary
sourceimpl<'de> Deserialize<'de> for TargetFeaturesSummary
impl<'de> Deserialize<'de> for TargetFeaturesSummary
sourcefn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl PartialEq<TargetFeaturesSummary> for TargetFeaturesSummary
impl PartialEq<TargetFeaturesSummary> for TargetFeaturesSummary
sourcefn eq(&self, other: &TargetFeaturesSummary) -> bool
fn eq(&self, other: &TargetFeaturesSummary) -> bool
sourceimpl Serialize for TargetFeaturesSummary
impl Serialize for TargetFeaturesSummary
impl Eq for TargetFeaturesSummary
impl StructuralEq for TargetFeaturesSummary
impl StructuralPartialEq for TargetFeaturesSummary
Auto Trait Implementations
impl RefUnwindSafe for TargetFeaturesSummary
impl Send for TargetFeaturesSummary
impl Sync for TargetFeaturesSummary
impl Unpin for TargetFeaturesSummary
impl UnwindSafe for TargetFeaturesSummary
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more