elvwf

8 commits
Updated 2026-06-13 11:19:44
tests/fail
tests/fail/format_le_on_non_scalar.rs
use elvwf::Wired;

#[derive(Wired, Clone, Debug, PartialEq)]
struct Inner {
    #[wf(value(format = Be))]
    x: u32,
}

#[derive(Wired)]
struct Bad {
    #[wf(value(format = Le))]
    inner: Inner,
}

fn main() {}