(&self, f: &mut std::fmt::Formatter<'_>)
| 62 | |
| 63 | impl std::fmt::Debug for AhpHookExecutor { |
| 64 | fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { |
| 65 | f.debug_struct("AhpHookExecutor") |
| 66 | .field("agent_id", &self.agent_id) |
| 67 | .field("depth", &self.depth) |
| 68 | .field("idle_threshold_ms", &self.idle_threshold_ms) |
| 69 | .finish() |
| 70 | } |
| 71 | } |
| 72 | |
| 73 | impl AhpHookExecutor { |