| 3 | } |
| 4 | |
| 5 | pub trait TreeDeserialization { |
| 6 | fn deserialize(data: &[u8]) -> Self |
| 7 | where |
| 8 | Self: Sized; |
| 9 | } |
| 10 | |
| 11 | impl TreeDeserialization for i32 { |
| 12 | fn deserialize(data: &[u8]) -> Self { |
nothing calls this directly
no outgoing calls
no test coverage detected