std::fs::read
reads the entire file into memory and returns a Vec
What can I use to read <= N bytes at each read ?? e.g. <= 32 bytes per read
std::fs::read
reads the entire file into memory and returns a Vec
What can I use to read <= N bytes at each read ?? e.g. <= 32 bytes per read
See the Read
trait.
This topic was automatically closed 90 days after the last reply. We invite you to open a new topic if you have further questions or comments.