pub trait ShellEscapeExt {
// Required method
fn shell_escape(&self) -> Cow<'_, str>;
}Required Methods§
fn shell_escape(&self) -> Cow<'_, str>
Implementations on Foreign Types§
Source§impl<'a> ShellEscapeExt for &'a str
impl<'a> ShellEscapeExt for &'a str
Source§fn shell_escape(&self) -> Cow<'_, str>
fn shell_escape(&self) -> Cow<'_, str>
Escape characters that may have special meaning in a shell.