From a5898ee76105af4b3228b051e38228613817c4c4 Mon Sep 17 00:00:00 2001 From: timofey Date: Thu, 6 Jul 2023 03:24:21 +0000 Subject: [PATCH] `FallibleContext::stuff` disambiguate `Fallible` --- src/rstd/fallible.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/rstd/fallible.rs b/src/rstd/fallible.rs index 2cfcb51..e8d1d6e 100644 --- a/src/rstd/fallible.rs +++ b/src/rstd/fallible.rs @@ -25,7 +25,9 @@ pub trait FallibleContext<'a>: Context<'a> { } /// Convert a wrapped result into a fallible wrapped. - fn stuff(fa: WrapC<'a, Result, Self>) -> WrapE<'a, A, E, Self::Fallible> { + fn stuff( + fa: WrapC<'a, Result, Self>, + ) -> WrapE<'a, A, E, >::Fallible> { Self::Fallible::stuff(fa) } }