pub trait PipelineExt {
// Required method
fn pipe(self, command: impl Into<String>) -> PipelineBuilder;
}Expand description
Extension trait to add .pipe() method to ProcessRunner
Required Methods§
Sourcefn pipe(self, command: impl Into<String>) -> PipelineBuilder
fn pipe(self, command: impl Into<String>) -> PipelineBuilder
Pipe the output of this command to another command
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".