virtio-bindings 0.2.7

Rust FFI bindings to virtio generated using bindgen.
Documentation
// Copyright 2022 Unikie
// SPDX-License-Identifier: BSD-3-Clause OR Apache-2.0

#[cfg_attr(target_arch = "arm", path = "../bindings/arm/virtio_net.rs")]
#[cfg_attr(target_arch = "aarch64", path = "../bindings/aarch64/virtio_net.rs")]
#[cfg_attr(target_arch = "hexagon", path = "../bindings/hexagon/virtio_net.rs")]
#[cfg_attr(
    target_arch = "loongarch64",
    path = "../bindings/loongarch64/virtio_net.rs"
)]
#[cfg_attr(target_arch = "m68k", path = "../bindings/m68k/virtio_net.rs")]
#[cfg_attr(target_arch = "mips", path = "../bindings/mips/virtio_net.rs")]
#[cfg_attr(target_arch = "mips32r6", path = "../bindings/mips32r6/virtio_net.rs")]
#[cfg_attr(target_arch = "mips64", path = "../bindings/mips64/virtio_net.rs")]
#[cfg_attr(target_arch = "mips64r6", path = "../bindings/mips64r6/virtio_net.rs")]
#[cfg_attr(
    target_arch = "powerpc64",
    path = "../bindings/powerpc64/virtio_net.rs"
)]
#[cfg_attr(target_arch = "riscv32", path = "../bindings/riscv32/virtio_net.rs")]
#[cfg_attr(target_arch = "riscv64", path = "../bindings/riscv64/virtio_net.rs")]
#[cfg_attr(target_arch = "s390x", path = "../bindings/s390x/virtio_net.rs")]
#[cfg_attr(target_arch = "sparc", path = "../bindings/sparc/virtio_net.rs")]
#[cfg_attr(target_arch = "sparc64", path = "../bindings/sparc64/virtio_net.rs")]
#[cfg_attr(target_arch = "x86_64", path = "../bindings/x86_64/virtio_net.rs")]
#[cfg_attr(target_arch = "x86", path = "../bindings/x86/virtio_net.rs")]
mod generated;
pub use generated::*;

use std::fmt::{Debug, Formatter, Result};
use std::mem::{size_of, transmute};

impl Debug for virtio_net_hdr_v1 {
    fn fmt(&self, f: &mut Formatter) -> Result {
        // SAFETY: As of Linux v6.0, all union fields have compatible types.
        // This means that it is safe to convert any variant into any other,
        // as they all have the same size, alignment, and permitted values.
        // https://doc.rust-lang.org/reference/items/unions.html#reading-and-writing-union-fields
        let csum = unsafe { self.__bindgen_anon_1.csum };

        // We forgo determining the correct name of the fields in the
        // union due to the complexity that would involve.
        f.debug_struct("virtio_net_hdr_v1")
            .field("flags", &self.flags)
            .field("gso_type", &self.gso_type)
            .field("hdr_len", &self.hdr_len)
            .field("gso_size", &self.gso_size)
            .field("csum_start", &csum.start)
            .field("csum_offset", &csum.offset)
            .field("num_buffers", &self.num_buffers)
            .finish()
    }
}

impl PartialEq<Self> for virtio_net_hdr_v1 {
    fn eq<'a>(&'a self, other: &'a Self) -> bool {
        // SAFETY: The values will be valid byte arrays, and the lifetimes match the
        // original types.
        unsafe {
            let ptr1 = transmute::<&'a Self, &'a [u8; size_of::<Self>()]>(&self);
            let ptr2 = transmute::<&'a Self, &'a [u8; size_of::<Self>()]>(&other);
            ptr1 == ptr2
        }
    }
}

#[test]
fn virtio_net_hdr_v1_default_debug() {
    assert_eq!(format!("{:?}", virtio_net_hdr_v1::default()), "virtio_net_hdr_v1 { flags: 0, gso_type: 0, hdr_len: 0, gso_size: 0, csum_start: 0, csum_offset: 0, num_buffers: 0 }");
}

#[test]
fn virtio_net_hdr_v1_hex_debug() {
    let expected = "virtio_net_hdr_v1 {
    flags: 0x0,
    gso_type: 0x0,
    hdr_len: 0x0,
    gso_size: 0x0,
    csum_start: 0x0,
    csum_offset: 0x0,
    num_buffers: 0x0,
}";
    assert_eq!(format!("{:#x?}", virtio_net_hdr_v1::default()), expected);
}

#[test]
fn virtio_net_hdr_v1_partial_eq() {
    let hdr1 = virtio_net_hdr_v1::default();
    let hdr2 = virtio_net_hdr_v1 {
        flags: 1,
        ..Default::default()
    };
    assert_eq!(hdr1, hdr1);
    assert_ne!(hdr1, hdr2);
}