pub trait PrettyPrint {
    // Required method
    fn pretty_print(&self) -> String;
}

Required Methods§

Implementors§