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