(event: OtherEvent)
| 246 | } |
| 247 | impl From<OtherEvent> for EventSummary { |
| 248 | fn from(event: OtherEvent) -> Self { |
| 249 | let (kind, value) = event.destructure(); |
| 250 | EventSummary::Other(event, kind, value) |
| 251 | } |
| 252 | } |
| 253 | impl fmt::Debug for OtherEvent { |
| 254 | fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { |
nothing calls this directly
no test coverage detected