pub trait Renderer {
    type Output: Display;

    fn render_with_hints(
        &self,
        table: &Table,
        hints: &[RenderHint]
    ) -> Self::Output; fn render(&self, table: &Table) -> Self::Output { ... } }

Required Associated Types

Required Methods

Provided Methods

Implementors