Format a string into a preexisting buffer.
Returns an error if the buffer is not large enough.
Example
use std::fmt::format_in;
let buf: [u8; 64];
let f = format_in!(&buf, "{} + {} = {}", 1, 2, 3).unwrap();
assert_eq!(f, "1 + 2 = 3");
Run this example