[][src]Struct cargo_lock::dependency::tree::Tree

pub struct Tree { /* fields omitted */ }

Dependency tree computed from a Cargo.lock file

Methods

impl Tree[src]

pub fn new(lockfile: &Lockfile) -> Result<Self, Error>[src]

Construct a new dependency tree for the given Lockfile.

pub fn render(
    &self,
    w: &mut impl Write,
    node_index: NodeIndex,
    direction: EdgeDirection
) -> Result<()>
[src]

Render the dependency graph for the given NodeIndex using the default set of Symbols.

pub fn render_with_symbols(
    &self,
    w: &mut impl Write,
    node_index: NodeIndex,
    direction: EdgeDirection,
    symbols: &Symbols
) -> Result<()>
[src]

Render the dependency graph for the given NodeIndex using the provided set of Symbols.

pub fn graph(&self) -> &Graph[src]

Get the petgraph dependency graph.

pub fn nodes(&self) -> &Nodes[src]

Get the nodes of the petgraph dependency graph.

Trait Implementations

impl Clone for Tree[src]

impl Debug for Tree[src]

Auto Trait Implementations

impl RefUnwindSafe for Tree

impl Send for Tree

impl Sync for Tree

impl Unpin for Tree

impl UnwindSafe for Tree

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