Formatter

Trait Formatter 

Source
pub trait Formatter {
    // Required methods
    fn show_json(&self) -> String;
    fn show_normal(&self) -> String;
    fn show_short(&self) -> String;

    // Provided method
    fn show(&self, formatter_type: FormatterType) -> String { ... }
}

Required Methods§

Provided Methods§

Source

fn show(&self, formatter_type: FormatterType) -> String

Implementors§