elvwf

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

#[derive(Wired)]
#[wf(header(dsl = "A:128"))]
struct Bad {
    #[wf(value(format = Be))]
    a: u64,
}

fn main() {}