elvwf

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

#[derive(Wired)]
#[wf(header(dsl = "A:4|A:4|_:8"))]
struct Bad {
    #[wf(value(format = Be))]
    a: u32,
}

fn main() {}