Trait shell_quote::Quoter
source · pub trait Quoter: QuoterSealed { }Expand description
A trait for quoting/escaping a string of bytes into a shell-safe form.
This trait is sealed and cannot be implemented outside of this crate.
This is because the QuoteExt implementation for String must be sure
that quoted bytes are valid UTF-8, and that is only possible if the
implementation is known and tested in advance.
Object Safety§
This trait is not object safe.