bindb/storage/dynamic/
entry_id.rs

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