#[derive(LanguageChildren)]Expand description
The macro to define a view type for a LanguageChildren and conversion mechanisms.
The type passed to LanguageChildren must satisfy the following conditions:
- It MUST have exactly one generic parameter.
- It MUST be a struct.
- It MUST have at least one field with one of the following types (where
Tparameter):T[T; N]Vec<T>
Vec<T>can appear AT MOST ONCE.