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§
Provided Methods§
Sourcefn debug_print(self) -> Selfwhere
Self: Sized,
fn debug_print(self) -> Selfwhere
Self: Sized,
Print the command string to stderr.