macro_rules! format_bytes_mut { ($($arg: tt)*) => { ... }; }
The format macro, but returning StrMut.
use bytes_utils::{format_bytes_mut, StrMut}; let s: StrMut = format_bytes_mut!("Hello {}", "world"); assert_eq!("Hello world", s);