(&self, sandbox: &RestoreContext)
| 635 | } |
| 636 | |
| 637 | pub async fn before_restore(&self, sandbox: &RestoreContext) -> LifecycleResult<()> { |
| 638 | for ext in self.active_for(&sandbox.sandbox) { |
| 639 | ext.before_restore(sandbox).await?; |
| 640 | } |
| 641 | Ok(()) |
| 642 | } |
| 643 | |
| 644 | pub async fn after_restore(&self, sandbox: &RestoreContext) { |
| 645 | for ext in self.active_for(&sandbox.sandbox) { |
no test coverage detected