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.