elvwf

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

#[derive(Wired)]
#[wf(header(dsl = "F:2|_:6"))]
struct Bad {
    #[wf(opt(flag = F), value(format = Be))]
    maybe: Option<u32>,
}

fn main() {}