Formatter

This commit is contained in:
LukeMathWalker
2024-05-24 18:16:20 +02:00
parent 1aae615bb4
commit 4401743807
36 changed files with 0 additions and 36 deletions

View File

@@ -50,4 +50,3 @@ The difference is in their _purpose_: `Display` returns a representation that's
while `Debug` provides a low-level representation that's more suitable to developers and service operators.\
That's why `Debug` can be automatically implemented using the `#[derive(Debug)]` attribute, while `Display`
**requires** a manual implementation.