elvwf

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

#[derive(Wired)]
#[wf(header(dsl = "F:1|_:7"))]
struct Bad {
    #[wf(opt(flag = F), value(format = Be))]
    not_an_option: u32,
}

fn main() {}