macro_rules! bytes {
    () => { ... };
    ($($s:literal)+) => { ... };
}
Expand description

Converts a sequence of string literals containing hex-encoded data into a new Bytes at compile time.

If the input is empty, an empty instance is returned.

Note that the strings cannot be prefixed with 0x.

See hex! for more information.