(&self, f: &mut std::fmt::Formatter<'_>)
| 27 | |
| 28 | impl Display for CommitListItem { |
| 29 | fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { |
| 30 | write!( |
| 31 | f, |
| 32 | "CommitListItem {{ hash: {}, timestamp: {}}}", |
| 33 | self.hash, self.timestamp |
| 34 | ) |
| 35 | } |
| 36 | } |
| 37 | |
| 38 | impl TreeSerialization for CommitListItem { |
nothing calls this directly
no outgoing calls
no test coverage detected