pub trait ShellEscapeExt {
    // Required method
    fn shell_escape(&self) -> Cow<'_, str>;
}

Required Methods§

source

fn shell_escape(&self) -> Cow<'_, str>

Implementations on Foreign Types§

source§

impl<'a> ShellEscapeExt for &'a str

source§

fn shell_escape(&self) -> Cow<'_, str>

Escape characters that may have special meaning in a shell.

Implementors§