(&self)
| 172 | |
| 173 | impl<T: ByteViewType + ?Sized> Clone for GenericByteViewArray<T> { |
| 174 | fn clone(&self) -> Self { |
| 175 | Self { |
| 176 | data_type: T::DATA_TYPE, |
| 177 | views: self.views.clone(), |
| 178 | buffers: self.buffers.clone(), |
| 179 | nulls: self.nulls.clone(), |
| 180 | phantom: Default::default(), |
| 181 | } |
| 182 | } |
| 183 | } |
| 184 | |
| 185 | impl<T: ByteViewType + ?Sized> GenericByteViewArray<T> { |