rust_script_ext::prelude

Trait CommandString

Source
pub trait CommandString {
    // Required method
    fn cmd_str(&self) -> String;

    // Provided method
    fn debug_print(self) -> Self
       where Self: Sized { ... }
}
Expand description

Output Command as a text string, useful for debugging.

Required Methods§

Source

fn cmd_str(&self) -> String

Format the command like a bash string.

Provided Methods§

Source

fn debug_print(self) -> Self
where Self: Sized,

Print the command string to stderr.

Implementations on Foreign Types§

Source§

impl CommandString for Command

Source§

fn cmd_str(&self) -> String

Implementors§