1 2 3 4 5 6 7 8 9 10 11
binbuf::fixed! { #[derive(Clone, Copy)] pub struct Value(pub u64); buf! { pub struct Buf<P>(Value, P); } impl I for Value { type Buf<P> = Buf<P>; } impl Code for Value {} }