| 5 | // 定义大 Key |
| 6 | #[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd)] |
| 7 | pub struct BKey { |
| 8 | pub val: U256, |
| 9 | } |
| 10 | |
| 11 | impl Key for BKey { |
| 12 | fn as_slice<T, F: Fn(&[u8]) -> T>(&self, func: F) -> T { |
nothing calls this directly
no outgoing calls
no test coverage detected