Earlier quoted context omitted.
Incidentally, SIMD is just waiting on stabilization now; it’s RFC was accepted and the implementation landed. Soon!
Will Rust have idioms for really doing SIMD in Rust ? If I understand correctly, C++ has to drop into assembly to do SIMD (at least so far).
Most compilers do a reasonable job with auto-vectorization, and if more is needed, there are instrisics.
No need to write straight Assembly.