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
extern crate structview;

use structview::View;

#[derive(Clone, Copy, View)]
#[repr(C)]
struct Test<T: View> {
    foo: T,
}

fn main() {}