Expand description
A simple interface for extending external types with custom implementations of Debug and Display traits.
All examples are in this directory.
Modules§
Structs§
- Carrier
- A type that make possible formatting for CustomDebug and CustomDisplay implementors.
Traits§
- Debug
Ext - A trait extension which adds a
.debug()
method like Path::display does this for any type. Its method returns an object that implements Debug and can be used for formatting. - Display
Ext - A trait extension which adds a method like Path::display does this for any type. Its method returns an object that implements Display and can be used for formatting.