pub trait IntoStdio {
// Required method
fn into_stdio(self) -> impl Future<Output = Result<Stdio>> + Send;
}Expand description
A trait for converting into a Stdio.
Required Methods§
Sourcefn into_stdio(self) -> impl Future<Output = Result<Stdio>> + Send
fn into_stdio(self) -> impl Future<Output = Result<Stdio>> + Send
Convert into std::process::Stdio.
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.