pub trait HideWindow {
// Required method
fn hide_window(&mut self) -> &mut Self;
}Required Methods§
Sourcefn hide_window(&mut self) -> &mut Self
fn hide_window(&mut self) -> &mut Self
Mark the command so its child does not get a visible console window on Windows. No-op elsewhere.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".