(&self)
| 177 | /// Returns the packed validity of this [`NullBuffer`] not including any offset |
| 178 | #[inline] |
| 179 | pub fn validity(&self) -> &[u8] { |
| 180 | self.buffer.values() |
| 181 | } |
| 182 | |
| 183 | /// Slices this [`NullBuffer`] by the provided `offset` and `length` |
| 184 | pub fn slice(&self, offset: usize, len: usize) -> Self { |
no test coverage detected