Trait TaskIO

Source
pub trait TaskIO<T: Task = Self> {
    // Provided methods
    fn configure_io(_task: &mut Executable<T>) -> ProjectResult { ... }
    fn recover_outputs(&mut self, _output: &Output) -> ProjectResult { ... }
}
Expand description

Configures the inputs and outputs of a task

Provided Methods§

Source

fn configure_io(_task: &mut Executable<T>) -> ProjectResult

During the initialization of the task, configures the inputs and outputs of the task.

Source

fn recover_outputs(&mut self, _output: &Output) -> ProjectResult

Recovers outputs from previous run if up-to-date

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§