Diffstat (limited to 'src/protocol/visitor/recoverable.rs')
-rw-r--r--src/protocol/visitor/recoverable.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/protocol/visitor/recoverable.rs b/src/protocol/visitor/recoverable.rs
index 4e1b307..a3a9d65 100644
--- a/src/protocol/visitor/recoverable.rs
+++ b/src/protocol/visitor/recoverable.rs
@@ -1,5 +1,5 @@
use crate::{
- any::{MaybeSized, TypeName},
+ any::{TypeName, WithContextLt},
bijective_higher_ranked_type,
effect::{Effect, Future},
higher_ranked_type,
@@ -18,7 +18,7 @@ pub trait Recoverable<'ctx, E: Effect<'ctx>> {
}
bijective_higher_ranked_type! {
- pub type DynRecoverable['ctx][E]: MaybeSized['ctx][]
+ pub type DynRecoverable['ctx][E]: WithContextLt['ctx][]
for<'a>
(dyn Recoverable<'ctx, E> + Send + 'a)
where {