mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 13:27:39 +03:00
Add UnwindSafe trait on Receiver<T> (#239)
This commit is contained in:
parent
0f560a9066
commit
bf7e5f7174
2 changed files with 9 additions and 1 deletions
|
@ -1,5 +1,9 @@
|
||||||
# Changes
|
# Changes
|
||||||
|
|
||||||
|
## [0.3.4]
|
||||||
|
|
||||||
|
* Add UnwindSafe trait on mpsc::Receiver<T> #239
|
||||||
|
|
||||||
## [0.3.3] - 2023-11-02
|
## [0.3.3] - 2023-11-02
|
||||||
|
|
||||||
* Add FusedStream trait on mpsc::Receiver<T> #235
|
* Add FusedStream trait on mpsc::Receiver<T> #235
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
//! A multi-producer, single-consumer, futures-aware, FIFO queue.
|
//! 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_core::{FusedStream, Stream};
|
||||||
use futures_sink::Sink;
|
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> {
|
impl<T> Drop for Receiver<T> {
|
||||||
fn drop(&mut self) {
|
fn drop(&mut self) {
|
||||||
let shared = self.shared.get_mut();
|
let shared = self.shared.get_mut();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue