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

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

A set of resolved feature IDs in a feature graph.

Created by FeatureQuery::resolve or the FeatureGraph::resolve_ methods.

Implementations

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

pub fn graph(&self) -> &FeatureGraph<'g>[src]

Returns the FeatureGraph that this feature set was computed against.

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

Returns the number of feature IDs in this set.

pub fn is_empty(&self) -> bool[src]

Returns true if no feature IDs were resolved in this set.

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

Returns true if this set contains the given feature ID.

Returns an error if this feature ID was unknown.

pub fn union(&self, other: &Self) -> Self[src]

Returns a FeatureSet that contains all packages present in at least one of self and other.

Panics

Panics if the package graphs associated with self and other don't match.

pub fn intersection(&self, other: &Self) -> Self[src]

Returns a FeatureSet that contains all packages present in both self and other.

Panics

Panics if the package graphs associated with self and other don't match.

pub fn difference(&self, other: &Self) -> Self[src]

Returns a FeatureSet that contains all packages present in self but not other.

Panics

Panics if the package graphs associated with self and other don't match.

pub fn symmetric_difference(&self, other: &Self) -> Self[src]

Returns a FeatureSet that contains all packages present in exactly one of self and other.

Panics

Panics if the package graphs associated with self and other don't match.

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

Returns a list of features present for this package, or None if this package is not present in the feature set.

Returns an error if the package ID was unknown.

pub fn to_package_set(&self) -> PackageSet<'g>[src]

Converts this FeatureSet into a PackageSet containing all packages with any selected features (including the "base" feature).

pub fn feature_ids<'a>(
    &'a self,
    direction: DependencyDirection
) -> impl Iterator<Item = FeatureId<'g>> + ExactSizeIterator + 'a
[src]

Iterates over feature IDs, in topological order in the direction specified.

Cycles

The packages within a dependency cycle will be returned in arbitrary order, but overall topological order will be maintained.

pub fn features<'a>(
    &'a self,
    direction: DependencyDirection
) -> impl Iterator<Item = FeatureMetadata<'g>> + ExactSizeIterator + 'a
[src]

Iterates over feature metadatas, in topological order in the direction specified.

Cycles

The packages within a dependency cycle will be returned in arbitrary order, but overall topological order will be maintained.

pub fn packages_with_features<'a>(
    &'a self,
    direction: DependencyDirection
) -> impl Iterator<Item = FeatureList<'g>> + 'a
[src]

Iterates over package metadatas and their corresponding features, in topological order in the direction specified.

Cycles

The packages within a dependency cycle will be returned in arbitrary order, but overall topological order will be maintained.

pub fn root_ids<'a>(
    &'a self,
    direction: DependencyDirection
) -> impl Iterator<Item = FeatureId<'g>> + ExactSizeIterator + 'a
[src]

Returns the set of "root feature" IDs in the specified direction.

  • If direction is Forward, return the set of feature IDs that do not have any dependencies within the selected graph.
  • If direction is Reverse, return the set of feature IDs that do not have any dependents within the selected graph.

Cycles

If a root consists of a dependency cycle, all the packages in it will be returned in arbitrary order.

pub fn root_features<'a>(
    &'a self,
    direction: DependencyDirection
) -> impl Iterator<Item = FeatureMetadata<'g>> + 'a
[src]

Returns the set of "root feature" metadatas in the specified direction.

  • If direction is Forward, return the set of metadatas that do not have any dependencies within the selected graph.
  • If direction is Reverse, return the set of metadatas that do not have any dependents within the selected graph.

Cycles

If a root consists of a dependency cycle, all the packages in it will be returned in arbitrary order.}

Creates an iterator over CrossLink instances in the direction specified.

Cycles

The links in a dependency cycle may be returned in arbitrary order.

Trait Implementations

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

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

Auto Trait Implementations

impl<'g> RefUnwindSafe for FeatureSet<'g>

impl<'g> Send for FeatureSet<'g>

impl<'g> Sync for FeatureSet<'g>

impl<'g> Unpin for FeatureSet<'g>

impl<'g> UnwindSafe for FeatureSet<'g>

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> 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>,