I'm learning rust for fun after C++ class and I'm wondering, can use std::io
break my code after update of rustc
edition to newer?
For example, in C++ using using namespace std
is bad, because if new function gets added to std
your multiple translation units code may break after compiler update because of function with name same as function written by you was added to namespace std
.
However in all the official rust tutorials use std::io
is used.
Can use std::io
break my code in rust?