pub trait PrettyPrint {
    // Required method
    fn pretty_print(&self);
}
Expand description

Like ToPretty but prints to the console instead.

Required Methods§

source

fn pretty_print(&self)

Like ToPretty::to_pretty but prints to the console instead.

Implementors§