Struct codespawn::raw_code::CodeConfig [] [src]

pub struct CodeConfig {
    pub name: String,
    pub type_dict: HashMap<String, String>,
    pub name_dict: HashMap<String, String>,
    pub global_cfg: HashMap<String, String>,
}

Language-specific configuration map.

Fields

Name of the configuration (can be cpp or rust).

Maps abstract type to overriden, language-specific type. Can be empty if no overrides are specified in config.

Maps abstract name to overriden, language-specific name (variables, functions, attributes etc.). Can be empty if no overrides are specified in config.

List of global configuration data for given language.

Trait Implementations

impl Display for CodeConfig
[src]

Formats the value using the given formatter. Read more