Enum fmt_macros::PositionUnstable
[-] [+]
[src]
pub enum Position<'a> { ArgumentNext, ArgumentIs(usize), 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. |