Home
last modified time | relevance | path

Searched refs:PollDataChannel (Results 1 – 3 of 3) sorted by relevance

/webrtc/data/
H A DCHANGELOG.md12 * Do not loose data in `PollDataChannel::poll_write` [#341](https://github.com/webrtc-rs/webrtc/pul…
13 * `PollDataChannel::poll_shutdown`: make sure to flush any writes before shutting down [#340](https…
23 * [#16 [PollDataChannel] reset shutdown_fut future after done](https://github.com/webrtc-rs/data/pu…
/webrtc/data/src/data_channel/
H A Dmod.rs395 pub struct PollDataChannel { struct
405 impl PollDataChannel { argument
481 impl AsyncRead for PollDataChannel { implementation
552 impl AsyncWrite for PollDataChannel { implementation
663 impl Clone for PollDataChannel { implementation
664 fn clone(&self) -> PollDataChannel { in clone() argument
665 PollDataChannel::new(self.clone_inner()) in clone()
669 impl fmt::Debug for PollDataChannel { implementation
678 impl AsRef<DataChannel> for PollDataChannel { implementation
H A Ddata_channel_test.rs643 let mut poll_dc0 = PollDataChannel::new(dc0); in test_poll_data_channel()
644 let mut poll_dc1 = PollDataChannel::new(dc1); in test_poll_data_channel()