And portin RUST to OS/2 is absolutely impossible?
Personally I think it has been a bad idea to come up with such a programming language. Many legacy systems won't get Firefox releases anymore because of that... For example TenFourFox for PowerPC Macs is now doomed.
It is not impossible to port the rust compiler, but it is quite a big project and the only use for it really is for the Mozilla ecosystem, we have had problems maintaining much more popular programming tools in the past due to a lack of available programming talent and/or programmers willing/able to give up their free time to do maintenance them, so focusing what little resources the community has on it will bring only limited amount of software to the platform.
The language features are also strangely old fashioned with lack of memory management (optional or otherwise) and modularity, especially given that the main problems associated with Mozilla browsers in the past have been related to memory leaks, the lack of a modularity is a pain since the rust toolchain is terribly slow making GGC seem fast by comparison. It would in its current state also need redesigning for use on OS/2, as it stands now it is too memory hungry, in fact has not possible to build the toolchain on 32 bit systems since 2014 (modularity would help a lot with this), although this is a language implementation issue and not a technical issue, i.e. it is perfectly possible to create or modify a rust compiler that works on 32 bit systems, but it will add considerably to the effort needed to port it.
The odd thing about rust while it is indeed a safer language than C++ and this is touted by Mozilla as the main reason for its existence, it is still not a safe language, making it yet another safe
ish functional language variant of which there are already a few thousands. It is a bit perplexing why mozilla choose to invent a new language that sports no new features rather than using an existing language and toolchain ....