set the schema
(mut self, schema: SchemaRef)
| 539 | |
| 540 | // set the schema |
| 541 | fn with_schema(mut self, schema: SchemaRef) -> Self { |
| 542 | self.schema = schema; |
| 543 | self |
| 544 | } |
| 545 | |
| 546 | /// set the batches to convert |
| 547 | fn with_batches(mut self, batches: Vec<RecordBatch>) -> Self { |
no outgoing calls