Struct cargo_make::types::GlobalConfig [] [src]

pub struct GlobalConfig {
    pub file_name: Option<String>,
    pub log_level: Option<String>,
    pub default_task_name: Option<String>,
    pub update_check_minimum_interval: Option<String>,
    pub search_project_root: Option<bool>,
}

Holds configuration info for cargo-make

Fields

File from which the global config was loaded from

Default log level

Default task name

Update check minimum time from the previous check (always, daily, weekly, monthly)

True to search for project root in parent directories if current cwd is not a project root

Methods

impl GlobalConfig
[src]

[src]

Returns new instance

Trait Implementations

impl Debug for GlobalConfig
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for GlobalConfig
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for GlobalConfig

impl Sync for GlobalConfig