Struct guppy::graph::PackageQuery[][src]

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

A query over a package graph.

This is the entry point for iterators over IDs and dependency links, and dot graph presentation. A PackageQuery is constructed through the query_ methods on PackageGraph.

Implementations

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

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

Returns the package graph on which the query is going to be executed.

pub fn direction(&self) -> DependencyDirection[src]

Returns the direction the query is happening in.

pub fn initials<'a>(
    &'a self
) -> impl Iterator<Item = PackageMetadata<'g>> + ExactSizeIterator + 'a
[src]

Returns the list of initial packages specified in the query.

The order of packages is unspecified.

pub fn starts_from(&self, package_id: &PackageId) -> Result<bool, Error>[src]

Returns true if the query starts from the given package ID.

Returns an error if this package ID is unknown.

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

Converts this PackageQuery into a FeatureQuery, using the given feature filter.

This will cause the feature graph to be constructed if it hasn't been done so already.

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

Resolves this query into a set of known packages, following every link found along the way.

This is the entry point for iterators.

pub fn resolve_with(self, resolver: impl PackageResolver<'g>) -> PackageSet<'g>[src]

Resolves this query into a set of known packages, using the provided resolver to determine which links are followed.

pub fn resolve_with_fn(
    self,
    resolver_fn: impl FnMut(&PackageQuery<'g>, PackageLink<'g>) -> bool
) -> PackageSet<'g>
[src]

Resolves this query into a set of known packages, using the provided resolver function to determine which links are followed.

Trait Implementations

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

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

Auto Trait Implementations

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

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

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

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

impl<'g> UnwindSafe for PackageQuery<'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>,