Trait Streamable

Source
pub trait Streamable {
    // Required method
    fn invoke_streaming(self) -> Result<Streaming, CommandErrorWrapper>;
}
Expand description

Trait that defines “asynchronously” invokable processes.

Required Methods§

Source

fn invoke_streaming(self) -> Result<Streaming, CommandErrorWrapper>

Invoke a child process and return a handle to its output streams.

Implementors§