Builds the [`NullBuffer`] without resetting the builder. This consumes the builder. Use [`Self::finish`] to reuse it.
(self)
| 216 | /// |
| 217 | /// This consumes the builder. Use [`Self::finish`] to reuse it. |
| 218 | pub fn build(self) -> Option<NullBuffer> { |
| 219 | self.bitmap_builder.map(NullBuffer::from) |
| 220 | } |
| 221 | |
| 222 | /// Builds the [NullBuffer] without resetting the builder. |
| 223 | pub fn finish_cloned(&self) -> Option<NullBuffer> { |