pub trait NestedArray { type Child: Array; fn child(&self) -> &Self::Child; }
Types storing nested sequences of values.
Returns a reference to the child array.