Struct cargo_metadata::Target [] [src]

pub struct Target {
    pub name: String,
    pub kind: Vec<String>,
    // some fields omitted
}

A single target (lib, bin, example, ...) provided by a crate

Fields

Name as given in the Cargo.toml or generated from the file name

Kind of target ("bin", "example", "test", "bench", "lib")

Trait Implementations

impl Debug for Target
[src]

Formats the value using the given formatter.