logo
pub trait VisitFmt: VisitOutput<Result> {
    fn writer(&mut self) -> &mut dyn Write;
}
Expand description

Extension trait implemented by visitors to indicate that they write to a fmt::Write instance, and allow access to that writer.

Required methods

Returns the formatter that this visitor writes to.

Implementors