rustfmt and now grouping working

This commit is contained in:
elvis
2025-09-10 22:41:40 +02:00
parent 355857abff
commit 91f69c9e6d
30 changed files with 2368 additions and 1188 deletions

View File

@ -72,7 +72,11 @@ impl PartialEq for Translator {
// -----------------------------------------------------------------------------
pub trait PrintableWithTranslator {
fn print(&self, f: &mut fmt::Formatter, translator: &Translator) -> fmt::Result;
fn print(
&self,
f: &mut fmt::Formatter,
translator: &Translator,
) -> fmt::Result;
}
pub struct Formatter<'a, T> {