macro_rules! impl_array_sizes {
($($len:expr => $ty:ident),+ $(,)?) => { ... };
}Expand description
Implement the ArraySize and AssocArraySize traits for a given list of N => UN, ...
mappings.
N is used over UN::USIZE in order to improve compile times (avoids associated constant
resolution)