Ensure "pretty-printed" Debug
works as expected.
#177
Labels
C - Testing
Category: Verifying the correctness of code.
C - Usability
Category: How easy it is for users to use the library.
P - Low
Priority: Not particularly urgent.
In Rust, it is possible to request a type be displayed both as a "debug" and "pretty-print" version simultaneously using
format!("{:#?}", ...);
. TheDebug
implementations provided here should be verified to work this way as well.They may already work correctly now, as the
Debug
implementation uses a lot of formatting tools fromcore
, but it should be verified.The text was updated successfully, but these errors were encountered: