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: ConfigThe flow config object
task: StringThe main task of the flow
env_info: EnvInfoThe env info
disable_workspace: boolPrevent workspace support
disable_on_error: boolPrevent on error flow even if defined in config section
allow_private: boolAllow invocation of private tasks
skip_init_end_tasks: boolIf 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§
Auto Trait Implementations§
impl Freeze for FlowInfo
impl RefUnwindSafe for FlowInfo
impl Send for FlowInfo
impl Sync for FlowInfo
impl Unpin for FlowInfo
impl UnwindSafe for FlowInfo
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
    T: Clone,
 
impl<T> CloneToUninit for Twhere
    T: Clone,
Source§impl<T> IntoEither for T
 
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
 
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts 
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
 
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts 
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more