pub trait Escaper {
    fn write_escaped<W>(&self, fmt: W, string: &str) -> Result
    where
        W: Write
; }

Required methods

Implementors