Marks the apply as failed with a reason.
(&mut self, reason: impl Into<String>)
| 512 | |
| 513 | /// Marks the apply as failed with a reason. |
| 514 | pub fn mark_failed(&mut self, reason: impl Into<String>) { |
| 515 | self.failed = true; |
| 516 | self.failure_reason = Some(reason.into()); |
| 517 | } |
| 518 | |
| 519 | // Stat Recording Convenience Methods |
| 520 |
no outgoing calls