Crate debugit[][src]

Expand description

Use debug printlns, without the trait bounds (using specialization to find the right impl anyway).

NOTE: This uses experimental Rust features and is therefore by itself experimental and unstable, and has all the problems of feature(specialization).

For this reason, unsafe is required to use this feature unfortunately.

Macros

Print a message, and then each value’s debug representation (if it has one)

Structs

This type always implements Debug. Uses specialization to use the inner value’s Debug (which it should basically always have).

Functions

This type always implements Debug. Uses specialization to use the inner value’s Debug (which it should basically always have).