Protocol std::fmt::Formattable

protocol Formattable<Self, F = NullFormatter> { ... }
F: Formatter<F>

Types that can be formatted. This is the standard way to implement custom formatting for types.

Example

Required methods