(&self)
| 347 | |
| 348 | impl<T: Timestamp, CB: ContainerBuilder> Clone for AsyncOutputHandle<T, CB> { |
| 349 | fn clone(&self) -> Self { |
| 350 | Self { |
| 351 | inner: Rc::clone(&self.inner), |
| 352 | index: self.index, |
| 353 | } |
| 354 | } |
| 355 | } |
| 356 | |
| 357 | /// A trait describing the connection behavior between an input of an operator and zero or more of |
no test coverage detected