Macro impl_person_names_format_v1
macro_rules! impl_person_names_format_v1 {
($ provider : ty) => { ... };
($ provider : ty , ITER) => { ... };
($ provider : ty , DRY) => { ... };
($ provider : ty , DRY , ITER) => { ... };
}
Expand description
Implement DataProvider<PersonNamesFormatV1>
on the given struct using the data
hardcoded in this file. This allows the struct to be used with
icu
’s _unstable
constructors.
Using this implementation will embed the following data in the binary’s data segment:
- 674B for the lookup data structure (135 data identifiers)
- 302400B1 for the actual data (131 unique structs)
these numbers can be smaller in practice due to linker deduplication ↩