Nine Rules for Running Rust on the Web and on Embedded
<p>I recommend Rust when you want the speed of C++ and the memory safety of Python. On top of that, with Rust, you can build on more than 100,000 software libraries. In addition, Rust offers the potential of running your code not just on a conventional computer, but also inside a web page or even on a robot.</p>
<p>Running “almost everywhere”, however, comes with complications. This article is for Rust programmers who want to mitigate these complications. (It may also be of interest to those who want to see Rust’s “run almost everywhere” story.)</p>
<p>First complication: Web pages and the embedded processors of robots don’t support general file IO. If your project is mostly about reading and writing files, it’s not a good candidate for running on a robot, another embedded processor, or a web page.</p>
<p><a href="https://medium.com/towards-data-science/nine-rules-for-running-rust-on-the-web-and-on-embedded-94462ef249a2">Read More</a></p>