Skip to content
Snippets Groups Projects
Unverified Commit 7e88b56b authored by Taiki Endo's avatar Taiki Endo Committed by GitHub
Browse files

test: remove unnecessary unsafe code (#2424)

parent 43bbbf61
No related branches found
No related tags found
No related merge requests found
......@@ -119,20 +119,16 @@ impl<T: Stream> Spawn<T> {
impl<T: Future> Future for Spawn<T> {
type Output = T::Output;
fn poll(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
// Safety: we only expose &mut T if T: Unpin therefore this is safe.
let future = unsafe { self.map_unchecked_mut(|s| &mut s.future) };
future.poll(cx)
fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
self.future.as_mut().poll(cx)
}
}
impl<T: Stream> Stream for Spawn<T> {
type Item = T::Item;
fn poll_next(self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> {
// Safety: we only expose &mut T if T: Unpin therefore this is safe.
let stream = unsafe { self.map_unchecked_mut(|s| &mut s.future) };
stream.poll_next(cx)
fn poll_next(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> {
self.future.as_mut().poll_next(cx)
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment