How do I create a byte slice constant in rust, something as follows?
// This does not compile, but just to show my intention.
pub const MyConst: &'static [u8; 256] = b"abcdef" + [0u8; 250];
// Basically, the value is b"abcdef00000...", the `000...` appended at the end
// are a series of byte 0, not character 0.