Closed fenhl closed 8 years ago
Rust 1.6 stabilized std::io::Read::read_exact, so we don't need our util::ReadExactly trait which basically did the same thing anymore. This pull request replaces every read_exactly call with the equivalent read_exact call, and removes the trait.
std::io::Read::read_exact
util::ReadExactly
read_exactly
read_exact
Finally, v1.6 is here! LGTM :tada:
Rust 1.6 stabilized
std::io::Read::read_exact
, so we don't need ourutil::ReadExactly
trait which basically did the same thing anymore. This pull request replaces everyread_exactly
call with the equivalentread_exact
call, and removes the trait.