Trait Renderable

Source
pub trait Renderable {
    // Required method
    fn render(&self) -> String;
}
Expand description

Provides the ability for an object to be rendered to the command line

Required Methods§

Source

fn render(&self) -> String

Implementors§