(
&self,
phase: impl Into<String>,
category: impl Into<String>,
step: impl Into<String>,
duration_ms: u128,
)
| 55 | } |
| 56 | |
| 57 | pub fn record_step( |
| 58 | &self, |
| 59 | phase: impl Into<String>, |
| 60 | category: impl Into<String>, |
| 61 | step: impl Into<String>, |
| 62 | duration_ms: u128, |
| 63 | ) { |
| 64 | self.record_event( |
| 65 | phase.into(), |
| 66 | Some(category.into()), |
| 67 | Some(step.into()), |
| 68 | None, |
| 69 | None, |
| 70 | Some(duration_ms), |
| 71 | ); |
| 72 | } |
| 73 | |
| 74 | pub fn record_elapsed_step( |
| 75 | &self, |
no test coverage detected