(&self, f: &mut std::fmt::Formatter<'_>)
| 44 | |
| 45 | impl Display for KVPair { |
| 46 | fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { |
| 47 | write!(f, "KVPair {{ key: {}, value: {} }}", self.key, self.value) |
| 48 | } |
| 49 | } |
| 50 | |
| 51 | impl TreeSerialization for KVPair { |
nothing calls this directly
no outgoing calls
no test coverage detected