(&self)
| 258 | |
| 259 | impl<K: ArrowDictionaryKeyType> Clone for DictionaryArray<K> { |
| 260 | fn clone(&self) -> Self { |
| 261 | Self { |
| 262 | data_type: self.data_type.clone(), |
| 263 | keys: self.keys.clone(), |
| 264 | values: self.values.clone(), |
| 265 | is_ordered: self.is_ordered, |
| 266 | } |
| 267 | } |
| 268 | } |
| 269 | |
| 270 | impl<K: ArrowDictionaryKeyType> DictionaryArray<K> { |
no outgoing calls