So I'm currently getting started with Rust, and am reading my way through Rust By Example.
Doing the Exercises, and playing with the code as I go.
But in the RBE Display function description it describes Fmt::Display as 'cleaner' than Fmt::Debug.
How is this? From what I see, you have to do more work, and write more code to try and make Fmt::Display work, while Fmt::Debug works right off the bat?
Am I misunderstanding something about what 'Cleaner' Code is, or is this a typo?