pub const fn const_str_i32<const N: i32>() -> &'static str
Returns the const parameter N as a &'static str.
N
&'static str
const MY_AWESOME_NUMBER:i32 = -123; assert_eq!("-123",const_str_i32::<MY_AWESOME_NUMBER>());