Clears the current contents of the decoder
(&mut self)
| 182 | |
| 183 | /// Clears the current contents of the decoder |
| 184 | pub fn clear(&mut self) { |
| 185 | // This does not reset current_field to allow clearing part way through a record |
| 186 | self.offsets_len = 1; |
| 187 | self.data_len = 0; |
| 188 | self.num_rows = 0; |
| 189 | } |
| 190 | |
| 191 | /// Flushes the current contents of the reader |
| 192 | pub fn flush(&mut self) -> Result<StringRecords<'_>, ArrowError> { |
no outgoing calls