Trait ChildProcess
trait ChildProcess {
// Required methods
async fn wait(&mut self) -> Result<ExitStatus>;
async fn kill(&mut self) -> Result<()>;
}Expand description
Testable view of the SSH child process used by shutdown_child.
Required Methods§
async fn wait(&mut self) -> Result<ExitStatus>
async fn wait(&mut self) -> Result<ExitStatus>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.