pub trait SplitContext {
    fn args(&self) -> &Vec<String>;
    fn new_blob(&mut self) -> Output;
}
Expand description

Provides execution context on split stage.

Required Methods

Command line arguments passed to runner.

Allocates new output file.

Implementors