We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ba2809e commit 0a07d53Copy full SHA for 0a07d53
library/core/src/fmt/mod.rs
@@ -299,6 +299,8 @@ pub struct FormattingOptions {
299
/// a &str size when stored in (the upper bits of) the same field.
300
/// (fmt::Arguments will make use of this property in the future.)
301
/// ```
302
+ // TODO: This could use a special niche type with range 0x8000_0000..=0xfdd0ffff.
303
+ // It's unclear if that's useful, though.
304
flags: u32,
305
/// Width if width flag (bit 27) above is set. Otherwise, always 0.
306
width: u16,
0 commit comments