structview 1.1.0

Viewing binary data as high-level data structures, safely.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
extern crate structview;

use structview::{u16_be, View};

#[derive(Clone, Copy, View)]
#[repr(C)]
struct Test {
    foo: [u8; 4],
    bar: u16_be,
}

fn main() {}