ps-mpmc 0.1.0-1

multi-producer multi-consumer queue
Documentation
1
2
3
4
5
6
7
8
9
use crate::Receiver;

impl<T> Clone for Receiver<T> {
    fn clone(&self) -> Self {
        Self {
            inner: self.inner.clone(),
        }
    }
}