binread 2.2.0

A Rust crate for helping read structs from binary data using ✨macro magic✨
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
error[E0425]: cannot find value `does_not_exist` in this scope
 --> $DIR/invalid_assert_variable.rs:4:13
  |
4 | #[br(assert(does_not_exist == 0))]
  |             ^^^^^^^^^^^^^^ not found in this scope

error[E0425]: cannot find value `a` in this scope
  --> $DIR/invalid_assert_variable.rs:11:13
   |
11 | #[br(assert(a == 0))]
   |             ^ help: a local variable with a similar name exists: `b`

error[E0425]: cannot find value `a` in this scope
  --> $DIR/invalid_assert_variable.rs:21:17
   |
21 |     #[br(assert(a == 0))]
   |                 ^ help: a local variable with a similar name exists: `b`