[][src]Struct cli::types::CliArgs

pub struct CliArgs {
    pub command: String,
    pub build_file: Option<String>,
    pub task: String,
    pub profile: Option<String>,
    pub log_level: String,
    pub disable_color: bool,
    pub cwd: Option<String>,
    pub env: Option<Vec<String>>,
    pub env_file: Option<String>,
    pub disable_workspace: bool,
    pub disable_on_error: bool,
    pub allow_private: bool,
    pub skip_init_end_tasks: bool,
    pub print_only: bool,
    pub list_all_steps: bool,
    pub diff_execution_plan: bool,
    pub disable_check_for_updates: bool,
    pub experimental: bool,
    pub arguments: Option<Vec<String>>,
    pub output_format: String,
}

Holds CLI args

Fields

command: String

The command name

build_file: Option<String>

The external Makefile.toml path

task: String

The task to invoke

profile: Option<String>

The profile name

log_level: String

Log level name

disable_color: bool

Disables colorful output

cwd: Option<String>

Current working directory

env: Option<Vec<String>>

Environment variables

env_file: Option<String>

Environment variables file

disable_workspace: bool

Prevent workspace support

disable_on_error: bool

Prevent on error flow even if defined in config section

allow_private: bool

Allow invocation of private tasks

skip_init_end_tasks: bool

If true, the init and end tasks are skipped

print_only: bool

Only print the execution plan

list_all_steps: bool

List all known steps

diff_execution_plan: bool

Diff flows

disable_check_for_updates: bool

Disables the update check during startup

experimental: bool

Allows access unsupported experimental predefined tasks

arguments: Option<Vec<String>>

additional command line arguments

output_format: String

Output format

Methods

impl CliArgs[src]

pub fn new() -> CliArgs[src]

Creates and returns a new instance.

Trait Implementations

impl Clone for CliArgs[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for CliArgs[src]

Auto Trait Implementations

impl Send for CliArgs

impl Unpin for CliArgs

impl Sync for CliArgs

impl UnwindSafe for CliArgs

impl RefUnwindSafe for CliArgs

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]