This is why #Rust is not only about memory safety/performance, but about correctness 👇
Did you know that in #JavaScript when `fetch`ing the same Request/Response twice will error (when containing a body)!?
It is because bodies are Streams, which can only be read once! You can clone the Request/Response/Body, but this comes with its own caveats (in the worst case the clone will buffer the body fully in memory!).
#RustLang solves this by borrow checking and good API design...
1/2