pub fn shell_quote_debug(value: impl Debug) -> String
Expand description

Format a value with Debug and quote it for safe shell insertion.

Examples found in repository?
src/shell_writer.rs (line 53)
52
53
54
    pub fn write_var_debug(&self, var: impl Display, value: impl Debug) {
        self.write_raw(var, shell_quote_debug(value));
    }