Struct guppy::graph::Cycles[][src]

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

Contains information about dependency cycles.

Cargo permits cycles if at least one of the links is dev-only. Cycles exposes information about such dependencies.

Constructed through PackageGraph::cycles.

Implementations

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

pub fn is_cyclic(&self, a: &PackageId, b: &PackageId) -> Result<bool, Error>[src]

Returns true if these two IDs are in the same cycle.

pub fn all_cycles(
    &self
) -> impl Iterator<Item = Vec<&'g PackageId>> + DoubleEndedIterator + 'g
[src]

Returns all the cycles of 2 or more elements in this graph.

Cycles are returned in topological order: if packages in cycle B depend on packages in cycle A, A is returned before B.

Within a cycle, nodes are returned in non-dev order: if package Foo has a dependency on Bar, and Bar has a cyclic dev-dependency on Foo, then Foo is returned before Bar.

Auto Trait Implementations

impl<'g> RefUnwindSafe for Cycles<'g>

impl<'g> Send for Cycles<'g>

impl<'g> Sync for Cycles<'g>

impl<'g> Unpin for Cycles<'g>

impl<'g> UnwindSafe for Cycles<'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<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[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, 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>,