From 8d665b0801ecc3caf761e72d144cbd13833f75ac Mon Sep 17 00:00:00 2001 From: timofey Date: Thu, 31 Aug 2023 21:57:59 +0000 Subject: [PATCH] remove unnecessary lifetimes in `BinaryTrees` --- src/flow/binary.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/flow/binary.rs b/src/flow/binary.rs index 113f999..a7aa556 100644 --- a/src/flow/binary.rs +++ b/src/flow/binary.rs @@ -18,10 +18,10 @@ pub type KeySplit<'a, BT> = (>::Tree, = WrapC<'a, A, BT>; pub trait BinaryTrees<'a>: FunctorContext<'a, T = Self::_Tm> + Clone { - type Node: 'a + Send; - type Reference: 'a + Send; - type Tree: 'a + Send; - type Key: 'a + Send + Clone; + type Node: Send; + type Reference: Send; + type Tree: Send; + type Key: Send + Clone; type Comparator: Comparator; type _Tm: Monad<'a>;