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(), } } }