Trait shell_quote::QuoteInto

source ·
pub trait QuoteInto<OUT: ?Sized> {
    // Required method
    fn quote_into<'q, S: ?Sized + Into<Quotable<'q>>>(s: S, out: &mut OUT);
}
Expand description

Quoting/escaping a string of bytes into a shell-safe form.

Required Methods§

source

fn quote_into<'q, S: ?Sized + Into<Quotable<'q>>>(s: S, out: &mut OUT)

Quote/escape a string of bytes into an existing container.

Object Safety§

This trait is not object safe.

Implementors§