pub trait CommandExtPrint {
// Required methods
fn print_args(&mut self) -> CommandPrint<'_>;
fn print_envs(&mut self) -> CommandPrint<'_>;
fn print_current_dir(&mut self) -> CommandPrint<'_>;
fn print_status(&mut self) -> CommandPrint<'_>;
fn print_stdout(&mut self) -> CommandPrint<'_>;
fn print_stderr(&mut self) -> CommandPrint<'_>;
}Required Methods§
fn print_args(&mut self) -> CommandPrint<'_>
fn print_envs(&mut self) -> CommandPrint<'_>
fn print_current_dir(&mut self) -> CommandPrint<'_>
fn print_status(&mut self) -> CommandPrint<'_>
fn print_stdout(&mut self) -> CommandPrint<'_>
fn print_stderr(&mut self) -> CommandPrint<'_>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".