From b5c479fdad023ee4f28181965b04f55e5e41f62f Mon Sep 17 00:00:00 2001 From: Dario Nieuwenhuis Date: Tue, 5 Apr 2022 21:22:02 +0200 Subject: [PATCH] Remove impl Unpin for SelectAll, as it's automatically inferred. --- embassy/src/util/select.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/embassy/src/util/select.rs b/embassy/src/util/select.rs index 29e17968..b3b03d81 100644 --- a/embassy/src/util/select.rs +++ b/embassy/src/util/select.rs @@ -9,8 +9,6 @@ pub struct SelectAll { inner: [Fut; N], } -impl Unpin for SelectAll {} - /// Creates a new future which will select over a list of futures. /// /// The returned future will wait for any future within `iter` to be ready. Upon