pub trait PieceSeq: 'static {
// Required method
fn build_each(self, cx: &mut BuildCx);
}Expand description
Children of a container: a tuple of pieces (the floem ViewTuple pattern — implemented
ONLY for tuples, (), and PieceVec, never via a blanket, to stay coherent).