(&self, pool: &dyn crate::MemoryPool)
| 251 | /// Claim memory used by this null buffer in the provided memory pool. |
| 252 | #[cfg(feature = "pool")] |
| 253 | pub fn claim(&self, pool: &dyn crate::MemoryPool) { |
| 254 | // NullBuffer wraps a BooleanBuffer which wraps a Buffer |
| 255 | self.buffer.inner().claim(pool); |
| 256 | } |
| 257 | } |
| 258 | |
| 259 | impl<'a> IntoIterator for &'a NullBuffer { |