Diffstat (limited to 'src/protocol/visitor/sequence.rs')
-rw-r--r--src/protocol/visitor/sequence.rs8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/protocol/visitor/sequence.rs b/src/protocol/visitor/sequence.rs
index d313e5b..2f8735d 100644
--- a/src/protocol/visitor/sequence.rs
+++ b/src/protocol/visitor/sequence.rs
@@ -16,16 +16,10 @@ pub trait Sequence<'ctx, E: Effect<'ctx>> {
pub type DynSequence<'a, 'ctx, E> = dyn Sequence<'ctx, E> + Send + 'a;
nameable! {
- pub struct Name['a, 'ctx, E];
+ pub struct Name['ctx, E] for<'a>;
impl [E] for DynSequence<'a, 'ctx, E> where {
E: Effect<'ctx>,
- 'ctx: 'a
- }
-
- impl [E] where DynSequence<'a, 'ctx, E> {
- E: Effect<'ctx>,
- 'ctx: 'a
}
}