Sets the row_count of RecordBatchOptions and returns self
(mut self, row_count: Option<usize>)
| 836 | } |
| 837 | /// Sets the row_count of RecordBatchOptions and returns self |
| 838 | pub fn with_row_count(mut self, row_count: Option<usize>) -> Self { |
| 839 | self.row_count = row_count; |
| 840 | self |
| 841 | } |
| 842 | /// Sets the match_field_names of RecordBatchOptions and returns self |
| 843 | pub fn with_match_field_names(mut self, match_field_names: bool) -> Self { |
| 844 | self.match_field_names = match_field_names; |
no outgoing calls