From a2b21e58192134c5ec7d92000460b500f88003e8 Mon Sep 17 00:00:00 2001 From: Taylor Cramer Date: Fri, 29 Jun 2018 19:33:16 -0700 Subject: [PATCH] Make Waker and LocalWaker Unpin These types never project pinned-ness into their contents, so it is safe for them to be `Unpin`. --- src/libcore/task/wake.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/libcore/task/wake.rs b/src/libcore/task/wake.rs index 4fd45be56fb..418d5af006f 100644 --- a/src/libcore/task/wake.rs +++ b/src/libcore/task/wake.rs @@ -13,6 +13,7 @@ issue = "50547")] use fmt; +use marker::Unpin; use ptr::NonNull; /// A `Waker` is a handle for waking up a task by notifying its executor that it @@ -25,6 +26,7 @@ pub struct Waker { inner: NonNull, } +impl Unpin for Waker {} unsafe impl Send for Waker {} unsafe impl Sync for Waker {} @@ -99,6 +101,7 @@ pub struct LocalWaker { inner: NonNull, } +impl Unpin for LocalWaker {} impl !Send for LocalWaker {} impl !Sync for LocalWaker {}