Expand description
Defines traits and types to help make arbitrary values formattable at runtime.
Structs§
- Argument
Formatter - Holds a
FormatArgument
and implements all thestd::fmt
formatting traits. - NoNamed
Arguments - A
NamedArguments
implementation that always returnsNone
. - NoPositional
Arguments - A ’PositionalArguments
implementation that always returns
None`.
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.