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