The Rust compiler itself it pretty moldable. It can be used as a library to extract any information out of the intermediate representations, so you don't work on the more or less stripped output, but directly on the compiler internals. It also has an experimental compiler backend for Cranelift, which is an alternative to LLVM and is intended to make debug builds faster. Cranelift is also ideal for making JIT compilers. So I have no doubt that Rust is a good language for moldable development, but it's going to take a series of experiments and blog posts by some very smart people, whereas in Python or JS, someone could make a moldable environment by stringing together things that are already commonplace without being a genius.