Trait pretty::Render[][src]

pub trait Render {
    type Error;
    fn write_str(&mut self, s: &str) -> Result<usize, Self::Error>;

    fn write_str_all(&mut self, s: &str) -> Result<(), Self::Error> { ... }
}

Trait representing the operations necessary to render a document

Associated Types

Required Methods

Provided Methods

Implementors