1 2 3 4 5 6 7 8 9
use binread::BinRead; #[derive(BinRead)] struct Foo { #[br(map = does_not_exist)] a: i32, } fn main() {}