What is the difference between use std::io::prelude::; and use std::io::; in the following snippet
use std::fs::File;
use std::io::prelude::*;
fn main () {
let mut f = File::open("hello.txt").unwrap();
let mut contents = String::new();
f.read_to_string(&mut contents).unwrap();
println!("{}", contents);
}
So basically it makes the imports cleaner (making it easier to tell what's imported from where), but does it have other effects: Compile time? Execution time? Binaries's sizes.