Expand description
Defines traits and types to help make arbitrary values formattable at runtime.
Structs§
- Argument
Formatter - Holds a
FormatArgumentand implements all thestd::fmtformatting traits. - NoNamed
Arguments - A
NamedArgumentsimplementation that always returnsNone. - NoPositional
Arguments - A ’PositionalArguments
implementation that always returnsNone`.
Traits§
- Argument
Source - A source of values to use when parsing the formatting string.
- Format
Argument - A type that indicates whether its value supports a specific format, and provides formatting functions that correspond to different format types.
- Named
Arguments - A type that associates an argument with a name.
- Positional
Arguments - A type that provides a list of arguments, randomly accessible by their position.