From b03a926062a639968f4f2e2c8e9c85f1f7624040 Mon Sep 17 00:00:00 2001 From: Alex Bagnall Date: Mon, 14 Sep 2026 17:47:42 -0400 Subject: [PATCH] Remove unnecessary trait bounds from impl block --- async-book/src/ch06-building-futures-by-hand.md | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/async-book/src/ch06-building-futures-by-hand.md b/async-book/src/ch06-building-futures-by-hand.md index 3c9eee4..05d5750 100644 --- a/async-book/src/ch06-building-futures-by-hand.md +++ b/async-book/src/ch06-building-futures-by-hand.md @@ -219,11 +219,7 @@ pub struct Select { b: B, } -impl Select -where - A: Future + Unpin, - B: Future + Unpin, -{ +impl Select { pub fn new(a: A, b: B) -> Self { Select { a, b } }