pub trait Escape { // Required method fn escape(&self, f: &mut Formatter<'_>, newline: bool) -> Result; }
Write self to f, escaping if necessary, and appending a newline if newline.
self
f
newline