pub trait DisplayFormat {
    fn format_for_display(&self, config: &Config) -> String;
    fn get_indent_level(&self) -> usize;
}

Required Methods

Implementors