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
In the meantime could you remove the statement "The {}/{:} formatter works the same as in format"? I wasted a while assuming that meant I could pass it the same things as format! before I found this issue.
The standard
format!
macro supportswith
configuration https://doc.rust-lang.org/std/fmt/index.html#widthI am trying to format
0x0100
using"{:#06x}"
however I am gettingWhen I remove
06
from the format (the resulting format is"{:#x}"
) I am getting0x100
which is not what I want.Is there a way to set with?
The text was updated successfully, but these errors were encountered: