pub trait QuoteInto<OUT: ?Sized> {
// Required method
fn quote_into<'q, S: Into<Quotable<'q>>>(s: S, out: &mut OUT);
}Expand description
Quoting/escaping a string of bytes into a shell-safe form.
Required Methods§
Sourcefn quote_into<'q, S: Into<Quotable<'q>>>(s: S, out: &mut OUT)
fn quote_into<'q, S: Into<Quotable<'q>>>(s: S, out: &mut OUT)
Quote/escape a string of bytes into an existing container.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.