(
root: &Path,
prepared_root: Option<&InstallOutcome>,
)
| 746 | |
| 747 | impl WireBackend { |
| 748 | fn installed_outcome( |
| 749 | root: &Path, |
| 750 | prepared_root: Option<&InstallOutcome>, |
| 751 | ) -> Result<InstallOutcome> { |
| 752 | let _phase = timing::phase("proxy.backend_install"); |
| 753 | match prepared_root { |
| 754 | Some(outcome) => Ok(outcome.clone()), |
| 755 | None => install_into(root), |
| 756 | } |
| 757 | } |
| 758 | |
| 759 | #[cfg(feature = "extensions")] |
| 760 | fn open( |
nothing calls this directly
no test coverage detected