MCPcopy Create free account
hub / github.com/f0rr0/oliphaunt / installed_outcome

Method installed_outcome

src/pglite/proxy.rs:748–757  ·  view source on GitHub ↗
(
        root: &Path,
        prepared_root: Option<&InstallOutcome>,
    )

Source from the content-addressed store, hash-verified

746
747impl 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(

Callers

nothing calls this directly

Calls 2

phaseFunction · 0.85
install_intoFunction · 0.85

Tested by

no test coverage detected