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

@ -35,7 +35,9 @@ where
}
/// Deserializer for file that contains graph and translator.
pub fn de<R>(reader: R) -> Result<(graph::SystemGraph, Translator), serde_cbor_2::Error>
pub fn de<R>(
reader: R,
) -> Result<(graph::SystemGraph, Translator), serde_cbor_2::Error>
where
R: io::Read,
{