structview 1.1.0

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

use structview::{u16_be, View};

#[derive(Clone, Copy, View)]
#[repr(C)]
struct Test([u8; 4], u16_be);

fn main() {}