Crate fmt_ext[][src]

Expand description

A simple interface for extending external types with custom implementations of Debug and Display traits.

All examples are in this directory.

Modules

Traits that provide a custom Debug.

Traits that provide a custom Display.

Structs

A type that make possible formatting for CustomDebug and CustomDisplay implementors.

Traits

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.

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.