pub trait PrettyPrint {
// Required method
fn pretty_print(&self);
}
Expand description
Like ToPretty
but prints to the console instead.
Required Methods§
Sourcefn pretty_print(&self)
fn pretty_print(&self)
Like ToPretty::to_pretty
but prints to the console instead.