Sets the `null_bit_buffer` of the [ArrayData]
(mut self, buf: Option<Buffer>)
| 2093 | |
| 2094 | /// Sets the `null_bit_buffer` of the [ArrayData] |
| 2095 | pub fn null_bit_buffer(mut self, buf: Option<Buffer>) -> Self { |
| 2096 | self.nulls = None; |
| 2097 | self.null_bit_buffer = buf; |
| 2098 | self |
| 2099 | } |
| 2100 | |
| 2101 | /// Sets the offset of the [ArrayData] |
| 2102 | #[inline] |
no outgoing calls