We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
core::fmt::rt::v1::Count
1 parent 4803680 commit a462e7cCopy full SHA for a462e7c
src/libcore/fmt/rt/v1.rs
@@ -33,9 +33,13 @@ pub enum Alignment {
33
Unknown,
34
}
35
36
+/// Used by [width](https://doc.rust-lang.org/std/fmt/#width) and [precision](https://doc.rust-lang.org/std/fmt/#precision) specifiers.
37
#[derive(Copy, Clone)]
38
pub enum Count {
39
+ /// Specified with a literal number, stores the value
40
Is(usize),
41
+ /// Specified using `$` and `*` syntaxes, stores the index into `args`
42
Param(usize),
43
+ /// Not specified
44
Implied,
45
0 commit comments