You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/libcore/fmt/rt/v1.rs
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -33,9 +33,13 @@ pub enum Alignment {
33
33
Unknown,
34
34
}
35
35
36
+
/// Used by [width](https://doc.rust-lang.org/std/fmt/#width) and [precision](https://doc.rust-lang.org/std/fmt/#precision) specifiers.
36
37
#[derive(Copy,Clone)]
37
38
pubenumCount{
39
+
/// Specified with a literal number, stores the value
38
40
Is(usize),
41
+
/// Specified using `$` and `*` syntaxes, stores the index into `args`
0 commit comments