We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
It is a common use case to print a byte array in hex format. For example:
assert_eq!("0203", format!("{:x}", &[2u8, 3]));
And user can't implement this behaviour cleanly.