pub trait HumanRenderable {
// Required method
fn render_human(&self, ctx: &OutputContext);
}Expand description
Trait for types that can be rendered to the terminal in human-readable format.
Required Methods§
Sourcefn render_human(&self, ctx: &OutputContext)
fn render_human(&self, ctx: &OutputContext)
Render this value to the terminal.