relax Send requirement on some drier stream extensions

Signed-off-by: Jason Volk <jason@zemos.net>
This commit is contained in:
Jason Volk
2025-04-06 05:52:48 +00:00
committed by Jade Ellis
parent 1b1198771f
commit d98ec6bf46
4 changed files with 11 additions and 11 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ pub trait TryExpect<'a, Item> {
impl<'a, T, Item> TryExpect<'a, Item> for T
where
T: Stream<Item = Result<Item>> + TryStream + Send + 'a,
T: Stream<Item = Result<Item>> + Send + TryStream + 'a,
Item: 'a,
{
#[inline]