Add UnwindSafe trait on Receiver<T> (#239)

This commit is contained in:
tt rt 2023-11-06 11:38:45 +01:00 committed by GitHub
parent 0f560a9066
commit bf7e5f7174
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 1 deletions

View file

@ -1,5 +1,9 @@
# Changes
## [0.3.4]
* Add UnwindSafe trait on mpsc::Receiver<T> #239
## [0.3.3] - 2023-11-02
* Add FusedStream trait on mpsc::Receiver<T> #235

View file

@ -1,5 +1,7 @@
//! A multi-producer, single-consumer, futures-aware, FIFO queue.
use std::{collections::VecDeque, fmt, pin::Pin, task::Context, task::Poll};
use std::{
collections::VecDeque, fmt, panic::UnwindSafe, pin::Pin, task::Context, task::Poll,
};
use futures_core::{FusedStream, Stream};
use futures_sink::Sink;
@ -212,6 +214,8 @@ impl<T> FusedStream for Receiver<T> {
}
}
impl<T> UnwindSafe for Receiver<T> {}
impl<T> Drop for Receiver<T> {
fn drop(&mut self) {
let shared = self.shared.get_mut();