(&self)
| 53 | |
| 54 | impl Value for Pointer { |
| 55 | fn size(&self) -> usize { |
| 56 | 37 // Fixed size: 4 bytes location + 33 bytes max RLP |
| 57 | } |
| 58 | |
| 59 | fn serialize_into(&self, buf: &mut [u8]) -> value::Result<usize> { |
| 60 | if buf.len() < 37 { |
nothing calls this directly
no outgoing calls
no test coverage detected