Macro aformat_macros::aformat
source · aformat!() { /* proc-macro */ }
Expand description
A no-alloc version of format!
, producing an ArrayString
.
§Usage
Usage is similar to format!
, although there are multiple limitations:
- No support for formatting flags, as we are not reinventing all of
format!
. - No support for
format!("{name}", name=username)
syntax, may be lifted in future.