From 9255dd7c240fb52bdd36388aedb802f1cce59db9 Mon Sep 17 00:00:00 2001 From: timofey Date: Thu, 6 Jul 2023 03:26:24 +0000 Subject: [PATCH] more `::Fallible` disambiguation --- src/rstd/fallible.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/rstd/fallible.rs b/src/rstd/fallible.rs index e8d1d6e..f7c3dc8 100644 --- a/src/rstd/fallible.rs +++ b/src/rstd/fallible.rs @@ -21,14 +21,14 @@ pub trait FallibleContext<'a>: Context<'a> { fn unstuff( wa: WrapE<'a, A, E, >::Fallible>, ) -> WrapC<'a, Result, Self> { - Self::Fallible::unstuff(wa) + >::Fallible::unstuff(wa) } /// Convert a wrapped result into a fallible wrapped. fn stuff( fa: WrapC<'a, Result, Self>, ) -> WrapE<'a, A, E, >::Fallible> { - Self::Fallible::stuff(fa) + >::Fallible::stuff(fa) } }