pub enum RequestedFeatures {
CliFeatures(CliFeatures),
DepFeatures {
features: Rc<BTreeSet<InternedString>>,
uses_default_features: bool,
},
}
Expand description
Features flags requested for a package.
This should be cheap and fast to clone, it is used in the resolver for various caches.
This is split into enum variants because the resolver needs to handle features coming from different places (command-line and dependency declarations), but those different places have different constraints on which syntax is allowed. This helps ensure that every place dealing with features is properly handling those syntax restrictions.
Variants
CliFeatures(CliFeatures)
Features requested on the command-line with flags.
DepFeatures
Fields
features: Rc<BTreeSet<InternedString>>
The features
dependency field.
uses_default_features: bool
The default-features
dependency field.
Features specified in a dependency declaration.
Trait Implementations
sourceimpl Clone for RequestedFeatures
impl Clone for RequestedFeatures
sourcefn clone(&self) -> RequestedFeatures
fn clone(&self) -> RequestedFeatures
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 more
sourceimpl Debug for RequestedFeatures
impl Debug for RequestedFeatures
sourceimpl Hash for RequestedFeatures
impl Hash for RequestedFeatures
sourceimpl PartialEq<RequestedFeatures> for RequestedFeatures
impl PartialEq<RequestedFeatures> for RequestedFeatures
sourcefn eq(&self, other: &RequestedFeatures) -> bool
fn eq(&self, other: &RequestedFeatures) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &RequestedFeatures) -> bool
fn ne(&self, other: &RequestedFeatures) -> bool
This method tests for !=
.
impl Eq for RequestedFeatures
impl StructuralEq for RequestedFeatures
impl StructuralPartialEq for RequestedFeatures
Auto Trait Implementations
impl RefUnwindSafe for RequestedFeatures
impl !Send for RequestedFeatures
impl !Sync for RequestedFeatures
impl Unpin for RequestedFeatures
impl UnwindSafe for RequestedFeatures
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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
sourceimpl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to key
and return true
if they are equal.