pub trait VisitWrite: VisitOutput<Result<(), Error>> {
// Required method
fn writer(&mut self) -> &mut dyn Write;
}
Expand description
Extension trait implemented by visitors to indicate that they write to an
io::Write
instance, and allow access to that writer.
Required Methods§
Implementors§
impl<V> VisitWrite for Alt<V>where
V: VisitWrite,
Available on crate feature
std
only.impl<V> VisitWrite for Messages<V>where
V: VisitWrite,
Available on crate feature
std
only.