(&self)
| 93 | |
| 94 | impl<T: ByteArrayType> Clone for GenericByteArray<T> { |
| 95 | fn clone(&self) -> Self { |
| 96 | Self { |
| 97 | data_type: T::DATA_TYPE, |
| 98 | value_offsets: self.value_offsets.clone(), |
| 99 | value_data: self.value_data.clone(), |
| 100 | nulls: self.nulls.clone(), |
| 101 | } |
| 102 | } |
| 103 | } |
| 104 | |
| 105 | impl<T: ByteArrayType> GenericByteArray<T> { |