elvwf

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

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

fn main() {}