Enum cargo::util::config::ConfigValue [] [src]

pub enum ConfigValue {
    Integer(i64PathBuf),
    String(StringPathBuf),
    List(Vec<(String, PathBuf)>, PathBuf),
    Table(HashMap<String, ConfigValue>, PathBuf),
    Boolean(boolPathBuf),
}

Variants

Methods

impl ConfigValue
[src]

Trait Implementations

impl Eq for ConfigValue
[src]

impl PartialEq for ConfigValue
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Clone for ConfigValue
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Decodable for ConfigValue
[src]

Deserialize a value using a Decoder.

impl Debug for ConfigValue
[src]

Formats the value using the given formatter.

impl Encodable for ConfigValue
[src]

Serialize a value using an Encoder.