format-bytes 0.3.0

A macro to format bytestrings
Documentation
1
2
3
4
5
6
use format_bytes::format_bytes;

fn main() {
    let dynamic_format = b"dynamic {} is impossible";
    format_bytes!(dynamic_format);
}