[][src]Struct guppy::graph::DependsCache

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

An optional cache used to speed up depends_on queries.

Created with PackageGraph::new_cache().

Methods

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

pub fn new(package_graph: &'g PackageGraph) -> Self[src]

Creates a new cache for depends_on queries for this package graph.

This holds a shared reference to the package graph. This is to ensure that the cache is invalidated if the package graph is mutated.

pub fn depends_on(
    &mut self,
    package_a: &PackageId,
    package_b: &PackageId
) -> Result<bool, Error>
[src]

Returns true if package_a depends (directly or indirectly) on package_b.

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

Trait Implementations

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

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

Auto Trait Implementations

impl<'g> Send for DependsCache<'g>

impl<'g> Sync for DependsCache<'g>

impl<'g> Unpin for DependsCache<'g>

impl<'g> UnwindSafe for DependsCache<'g>

impl<'g> RefUnwindSafe for DependsCache<'g>

Blanket Implementations

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

impl<T> From<T> for T[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<T> Borrow<T> for T where
    T: ?Sized
[src]

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

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