You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Not a big deal, but RandomAccess::read() should have a length: usize param, because it's supposed to read the data into memory. The other methods should keep length: u64.
Although, it would be even better to make it more rusty: read(&mut self, offset: u64, buf: &mut [u8]).
The text was updated successfully, but these errors were encountered:
Not a big deal, but
RandomAccess::read()
should have alength: usize
param, because it's supposed to read the data into memory. The other methods should keeplength: u64
.Although, it would be even better to make it more rusty:
read(&mut self, offset: u64, buf: &mut [u8])
.The text was updated successfully, but these errors were encountered: