pub trait Streamable {
// Required method
fn invoke_streaming(self) -> Result<Streaming, CommandErrorWrapper>;
}Expand description
Trait that defines “asynchronously” invokable processes.
Required Methods§
Sourcefn invoke_streaming(self) -> Result<Streaming, CommandErrorWrapper>
fn invoke_streaming(self) -> Result<Streaming, CommandErrorWrapper>
Invoke a child process and return a handle to its output streams.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".