From 930a1c4d818527cd650375f29b2284d9e0de54b4 Mon Sep 17 00:00:00 2001 From: timofey Date: Thu, 6 Jul 2023 03:16:12 +0000 Subject: [PATCH] `pub` `FallibleCtx` --- src/func/context.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/func/context.rs b/src/func/context.rs index bbb8c78..9427011 100644 --- a/src/func/context.rs +++ b/src/func/context.rs @@ -41,7 +41,7 @@ pub trait FunctorContextExt<'a>: FunctorContext<'a> { impl<'a, Ctx: FunctorContext<'a>> FunctorContextExt<'a> for Ctx {} -trait FallibleCtx<'a>: FunctorContext<'a> { +pub trait FallibleCtx<'a>: FunctorContext<'a> { /// Type to allow improved support for [`Result`] evaluation. /// This is important for async applications stopping early. type Fallible: MonadFailAny<'a, T = Self::T>;