Macro parse_le

Source
macro_rules! parse_le {
    ($bytes:expr, $t:ty, $range:expr) => { ... };
}
Expand description

Syntax helper for parsing multi-byte fields into primitives.

Example: parse_le!(bytes, i32, 5..9);