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)] //~ ERROR enums cannot derive `structview::View`
enum Test {
    Foo,
    Bar(u8),
}

fn main() {}