| 14 | /// This is a wrapper around a [Location] and an [RlpNode]. |
| 15 | #[derive(Debug, Clone, PartialEq, Eq, Arbitrary)] |
| 16 | pub struct Pointer { |
| 17 | location: Location, |
| 18 | #[proptest(strategy = "u256_or_hash()")] |
| 19 | rlp: RlpNode, |
| 20 | } |
| 21 | |
| 22 | impl Pointer { |
| 23 | /// Creates a new [Pointer] from a [Location] and an [RlpNode]. |