(&self, f: &mut std::fmt::Formatter<'_>)
| 342 | |
| 343 | impl std::fmt::Display for Tick { |
| 344 | fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { |
| 345 | match self { |
| 346 | Self::Name(TickKind::Fuzzed) => f.write_str("fuzzed"), |
| 347 | Self::Number(x) => f.write_fmt(format_args!("{x}")), |
| 348 | } |
| 349 | } |
| 350 | } |
| 351 | |
| 352 | #[derive(Debug, Clone, Serialize, Deserialize)] |
nothing calls this directly
no outgoing calls
no test coverage detected