Struct cargo_metadata::Node[][src]

pub struct Node {
    pub id: String,
    pub dependencies: Vec<String>,
    // some fields omitted
}

A node in a dependencies graph

Fields

An opaque identifier for a package

List of opaque identifiers for this node's dependencies

Trait Implementations

impl Clone for Node
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Node
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Node

impl Sync for Node