rust: add module to convert between success/-errno and io::Result
authorPaolo Bonzini <pbonzini@redhat.com>
Thu, 14 Nov 2024 08:05:38 +0000 (09:05 +0100)
committerPaolo Bonzini <pbonzini@redhat.com>
Tue, 25 Feb 2025 15:18:08 +0000 (16:18 +0100)
commit8a420dd109b9e4e2244cfa32bc92829093268b3e
tree40e9db642b552c7bb840cd7f46bda933d2e0c517
parent4cfe9edb1b1961af9cda74351f73b0abb3159b67
rust: add module to convert between success/-errno and io::Result

It is a common convention in QEMU to return a positive value in case of
success, and a negated errno value in case of error.  Unfortunately,
using errno portably in Rust is a bit complicated; on Unix the errno
values are supported natively by io::Error, but on Windows they are not;
so, use the libc crate.

This is a set of utility functions that are used by both chardev and
block layer bindings.

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
docs/devel/rust.rst
rust/qemu-api/meson.build
rust/qemu-api/src/assertions.rs
rust/qemu-api/src/errno.rs [new file with mode: 0644]
rust/qemu-api/src/lib.rs
rust/qemu-api/src/prelude.rs