Returns the current values buffer as a mutable slice
(&mut self)
| 353 | |
| 354 | /// Returns the current values buffer as a mutable slice |
| 355 | pub fn values_slice_mut(&mut self) -> &mut [T::Native] { |
| 356 | self.values_builder.as_mut_slice() |
| 357 | } |
| 358 | |
| 359 | /// Returns the current null buffer as a slice |
| 360 | pub fn validity_slice(&self) -> Option<&[u8]> { |
no outgoing calls