If the read types are using BufReaders internally, is there any practical difference between using that, and using the bufread::* types with a manually-created BufReader<T>? (apart from the aforementioned issue of what APIs are exposed).
Or in other words are the read::* types just a convenience for the developer to avoid typing BufReader::new() explicitly?
If the read types are using BufReaders internally, is there any practical difference between using that, and using the
bufread::*
types with a manually-createdBufReader<T>
? (apart from the aforementioned issue of what APIs are exposed).Or in other words are the
read::*
types just a convenience for the developer to avoid typingBufReader::new()
explicitly?