We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm trying to wrap my head around the different read/write functions in the Byte trait. It seems a bit needlessly intimidating and confusing. For reference, I'm refering to these functions: https://docs.rs/vm-memory/0.7.0/vm_memory/bytes/trait.Bytes.html#tymethod.read
Byte
write
write_to
read_into
read
Are these desirable changes?
The text was updated successfully, but these errors were encountered:
I am myself a bit confused about these things, @bonzini @alexandruag @jiangliu do you have a better idea how to answer here?
Sorry, something went wrong.
No branches or pull requests
I'm trying to wrap my head around the different read/write functions in the
Byte
trait. It seems a bit needlessly intimidating and confusing. For reference, I'm refering to these functions: https://docs.rs/vm-memory/0.7.0/vm_memory/bytes/trait.Bytes.html#tymethod.readwrite
writes to theByte
object, butwrite_to
actually reads from it.read_into
could have been a better name.read
/write
but that seems to be prevented by the configurable error type.Are these desirable changes?
The text was updated successfully, but these errors were encountered: