pub struct CursorCompactWriteSink<'a, T: SourceCursorSink<'a>> { /* private fields */ }Expand description
This is a CursorSink that wraps a sink (impl SourceCursorSink) and on each CursorSink::append() call, will write
the contents of the cursor Cursor given into the given sink - using the given &'a str as the original source.
Some tokens will not be output, and Whitespace tokens will always write out as a single ' '. It can be used as a
light-weight minifier for ToCursors structs.