Struct cargo_toml::TomlLibOrBin[][src]

pub struct TomlLibOrBin {
    pub path: Option<String>,
    pub name: Option<String>,
    pub test: Option<bool>,
    pub doctest: Option<bool>,
    pub bench: Option<bool>,
    pub doc: Option<bool>,
    pub plugin: Option<bool>,
    pub proc_macro: Option<bool>,
    pub harness: Option<bool>,
}

Fields

Trait Implementations

impl Debug for TomlLibOrBin
[src]

Formats the value using the given formatter. Read more

impl Clone for TomlLibOrBin
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations