ps-mpmc 0.1.0-1

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

impl<T> Clone for MPMC<T> {
    fn clone(&self) -> Self {
        Self {
            sender: self.sender.clone(),
            receiver: self.receiver.clone(),
        }
    }
}