FallibleCtx for TestContextCounted

This commit is contained in:
AF 2023-07-06 03:19:07 +00:00
parent 0c051a8c90
commit 74d3a00b87

View File

@ -11,6 +11,10 @@ impl<'a> FunctorContext<'a> for TestContextCounted {
type T = CountedInstance;
}
impl<'a> FallibleCtx<'a> for TestContextCounted {
type Fallible = instances::result::ResultFailOver<Self::T>;
}
impl<'a> Context<'a> for TestContextCounted {
type _Tm = Self::T;