From 2bebdc9116f0824f0eb6241445de6fb1925f4c15 Mon Sep 17 00:00:00 2001 From: Leo Kettmeir Date: Mon, 18 Jul 2022 22:24:35 +0200 Subject: feat(unstable): Ability to ref/unref "Child" in "Deno.spawnChild()" API (#15151) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Bartek IwaƄczuk Co-authored-by: Colin Ihrig --- runtime/ops/spawn.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'runtime/ops') diff --git a/runtime/ops/spawn.rs b/runtime/ops/spawn.rs index a6930b485..b337f2488 100644 --- a/runtime/ops/spawn.rs +++ b/runtime/ops/spawn.rs @@ -76,7 +76,7 @@ pub struct ChildStatus { signal: Option, } -impl TryFrom for ChildStatus { +impl TryFrom for ChildStatus { type Error = AnyError; fn try_from(status: ExitStatus) -> Result { -- cgit v1.2.3