(&self)
| 89 | |
| 90 | impl<R: RunEndIndexType> Clone for RunArray<R> { |
| 91 | fn clone(&self) -> Self { |
| 92 | Self { |
| 93 | data_type: self.data_type.clone(), |
| 94 | run_ends: self.run_ends.clone(), |
| 95 | values: self.values.clone(), |
| 96 | } |
| 97 | } |
| 98 | } |
| 99 | |
| 100 | impl<R: RunEndIndexType> RunArray<R> { |
no outgoing calls