1 2 3 4 5 6 7 8 9
#[macro_export] macro_rules! hex_display { ($slice:expr) => { hex_display::hex_display_slice($slice) }; ($vec:expr) => { hex_display::hex_display_vec($vec) }; }