pub trait AdhocWriter { // Required method fn write_string(&self, text: &str) -> Result<()>; }
Creates a writer and writes the string to it
Write a string to a built writer
If either the writer creation or the write operation fails the error is propagated.