Struct guppy::graph::feature::FeatureGraph[][src]

pub struct FeatureGraph<'g> { /* fields omitted */ }

A derived graph representing every feature of every package.

Constructed through PackageGraph::feature_graph.

Implementations

impl<'g> FeatureGraph<'g>[src]

pub fn build_warnings(&self) -> &'g [FeatureGraphWarning]

Notable traits for &'_ [u8]

impl<'_> Read for &'_ [u8]impl<'_> Write for &'_ mut [u8]
[src]

Returns any non-fatal warnings encountered while constructing the feature graph.

pub fn package_graph(&self) -> &'g PackageGraph[src]

Returns the PackageGraph from which this feature graph was constructed.

pub fn feature_count(&self) -> usize[src]

Returns the total number of (package ID, feature) combinations in this graph.

Includes the "base" feature for each package.

Returns the number of links in this graph.

pub fn metadata(
    &self,
    feature_id: impl Into<FeatureId<'g>>
) -> Result<FeatureMetadata<'g>, Error>
[src]

Returns metadata for the given feature ID, or None if the feature wasn't found.

pub fn all_features_for(
    &self,
    package_id: &PackageId
) -> Result<FeatureList<'g>, Error>
[src]

Returns all known features for a package.

Returns an error if the package ID was unknown.

pub fn is_default_feature<'a>(
    &self,
    feature_id: impl Into<FeatureId<'a>>
) -> Result<bool, Error>
[src]

Returns true if this feature is included in a package's build by default.

Returns an error if this feature ID is unknown.

Cycles

A cyclic dev-dependency may cause additional features to be turned on. This computation does not follow cross-package links and will not return true for such additional features.

pub fn depends_on<'a>(
    &self,
    feature_a: impl Into<FeatureId<'a>>,
    feature_b: impl Into<FeatureId<'a>>
) -> Result<bool, Error>
[src]

Returns true if feature_a depends (directly or indirectly) on feature_b.

In other words, this returns true if feature_b is a (possibly transitive) dependency of feature_a.

This also returns true if feature_a is the same as feature_b.

Note that this returns true if feature_a conditionally depends on feature_b, such as only turning it on for dev builds or only on particular platforms.

pub fn directly_depends_on<'a>(
    &self,
    feature_a: impl Into<FeatureId<'a>>,
    feature_b: impl Into<FeatureId<'a>>
) -> Result<bool, Error>
[src]

Returns true if feature_a directly depends on feature_b.

In other words, this returns true if feature_a is a direct dependency of feature_b.

This returns false if feature_a is the same as feature_b.

pub fn cycles(&self) -> Cycles<'g>[src]

Returns information about dependency cycles.

For more information, see the documentation for Cycles.

impl<'g> FeatureGraph<'g>[src]

Helpers for property testing

The methods in this section allow a FeatureGraph to be used in property-based testing scenarios.

Currently, proptest 0.10 is supported if the proptest010 feature is enabled.

pub fn prop010_id_strategy(&self) -> impl Strategy<Value = FeatureId<'g>> + 'g[src]

Returns a Strategy that generates random feature IDs from this graph.

The IDs so chosen are uniformly random from the entire feature graph. In other words, a package with more optional features is more likely to be chosen.

Requires the proptest010 feature to be enabled.

Panics

Panics if there are no packages in the PackageGraph from which this FeatureGraph was derived.

pub fn prop010_set_strategy(&self) -> impl Strategy<Value = FeatureSet<'g>> + 'g[src]

Returns a Strategy that generates random feature sets from this graph.

impl<'g> FeatureGraph<'g>[src]

Queries

The methods in this section create queries over subsets of this feature graph. Use the methods here to analyze transitive dependencies.

pub fn query_workspace(
    &self,
    filter: impl FeatureFilter<'g>
) -> FeatureQuery<'g>
[src]

Creates a new query over the entire workspace.

query_workspace will select all workspace packages (subject to the provided filter) and their transitive dependencies.

pub fn query_directed<'a>(
    &self,
    feature_ids: impl IntoIterator<Item = impl Into<FeatureId<'a>>>,
    dep_direction: DependencyDirection
) -> Result<FeatureQuery<'g>, Error>
[src]

Creates a new query that returns transitive dependencies of the given feature IDs in the specified direction.

Returns an error if any feature IDs are unknown.

pub fn query_forward<'a>(
    &self,
    feature_ids: impl IntoIterator<Item = impl Into<FeatureId<'a>>>
) -> Result<FeatureQuery<'g>, Error>
[src]

Creates a new query that returns transitive dependencies of the given feature IDs.

Returns an error if any feature IDs are unknown.

pub fn query_reverse<'a>(
    &self,
    feature_ids: impl IntoIterator<Item = impl Into<FeatureId<'a>>>
) -> Result<FeatureQuery<'g>, Error>
[src]

Creates a new query that returns transitive reverse dependencies of the given feature IDs.

Returns an error if any feature IDs are unknown.

impl<'g> FeatureGraph<'g>[src]

pub fn resolve_all(&self) -> FeatureSet<'g>[src]

Creates a new FeatureSet consisting of all members of this feature graph.

This will include features that aren't depended on by any workspace packages.

In most situations, query_workspace().resolve() is preferred. Use resolve_all if you know you need parts of the graph that aren't accessible from the workspace.

pub fn resolve_none(&self) -> FeatureSet<'g>[src]

Creates a new, empty FeatureSet associated with this feature graph.

pub fn resolve_ids<'a>(
    &self,
    feature_ids: impl IntoIterator<Item = impl Into<FeatureId<'a>>>
) -> Result<FeatureSet<'g>, Error>
[src]

Creates a new FeatureSet consisting of the specified feature IDs.

Returns an error if any feature IDs are unknown.

Trait Implementations

impl<'g> Clone for FeatureGraph<'g>[src]

impl<'g> Copy for FeatureGraph<'g>[src]

impl<'g> Debug for FeatureGraph<'g>[src]

Auto Trait Implementations

impl<'g> RefUnwindSafe for FeatureGraph<'g>[src]

impl<'g> Send for FeatureGraph<'g>[src]

impl<'g> Sync for FeatureGraph<'g>[src]

impl<'g> Unpin for FeatureGraph<'g>[src]

impl<'g> UnwindSafe for FeatureGraph<'g>[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<'a, T> DefaultFeatures<'a> for T where
    T: 'a + Clone + Send + Sync
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<'a, T> NonSyncFeatures<'a> for T where
    T: 'a + Clone
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> SafeBorrow<T> for T where
    T: ?Sized
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,