Earlier quoted context omitted.
> But I have yet to see commercial projects with mixed skill level team members where using such libraries didn't lead to productivity reduction on the long run (independent of programming language). Mixed skill team or not, I really don’t see why Box should be something the language struggles with.
Agreed – but why would you want to box an array instead of simply using a Vec?
Vec has {usize length, usize capacity, void* data}. Box has {usize length, void* data}. Box has {void* data}.