pub struct FlowInfo {
    pub config: Config,
    pub task: String,
    pub env_info: EnvInfo,
    pub disable_workspace: bool,
    pub disable_on_error: bool,
    pub allow_private: bool,
    pub skip_init_end_tasks: bool,
    pub skip_tasks_pattern: Option<Regex>,
    pub cli_arguments: Option<Vec<String>>,
}
Expand description

Holds flow information

Fields

config: Config

The flow config object

task: String

The main task of the flow

env_info: EnvInfo

The env info

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

skip_tasks_pattern: Option<Regex>

Skip tasks that match the provided pattern

cli_arguments: Option<Vec<String>>

additional command line arguments

Trait Implementations

Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self
The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.