elvwf

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

#[derive(Wired)]
#[wf(header(dsl = "S:8|_:8"))]
struct Bad<'a> {
    #[wf(len(slot = S), value(format = Be))]
    content: &'a str,
}

fn main() {}