From 74d3a00b874ee3fa56024f1cb6d8124a2102c65e Mon Sep 17 00:00:00 2001 From: timofey Date: Thu, 6 Jul 2023 03:19:07 +0000 Subject: [PATCH] `FallibleCtx` for `TestContextCounted` --- src/testing/counted.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/testing/counted.rs b/src/testing/counted.rs index 5abcdfa..1ea764a 100644 --- a/src/testing/counted.rs +++ b/src/testing/counted.rs @@ -11,6 +11,10 @@ impl<'a> FunctorContext<'a> for TestContextCounted { type T = CountedInstance; } +impl<'a> FallibleCtx<'a> for TestContextCounted { + type Fallible = instances::result::ResultFailOver; +} + impl<'a> Context<'a> for TestContextCounted { type _Tm = Self::T;