(&mut self, value: Value)
| 46 | |
| 47 | impl Sender { |
| 48 | pub(crate) fn send(&mut self, value: Value) { |
| 49 | if self.shared.value.swap(value, Ordering::SeqCst) != value { |
| 50 | self.shared.waker.wake(); |
| 51 | } |
| 52 | } |
| 53 | } |
| 54 | |
| 55 | impl Drop for Sender { |
no outgoing calls