Enum fmt_macros::PositionExperimental
[-]
[+]
[src]
pub enum Position<'a> {
ArgumentNext,
ArgumentIs(uint),
ArgumentNamed(&'a str),
}Enum describing where an argument for a format can be located.
Variants
ArgumentNext | The argument will be in the next position. This is the default. |
ArgumentIs | The argument is located at a specific index. |
ArgumentNamed | The argument has a name. |