AdhocWriter

Trait AdhocWriter 

Source
pub trait AdhocWriter {
    // Required method
    fn write_string(&self, text: &str) -> Result<()>;
}
Expand description

Creates a writer and writes the string to it

Required Methods§

Source

fn write_string(&self, text: &str) -> Result<()>

Write a string to a built writer

§Errors

If either the writer creation or the write operation fails the error is propagated.

Implementors§