MCPcopy Create free account
hub / github.com/apache/arrow-rs / with_row_count

Method with_row_count

arrow-array/src/record_batch.rs:838–841  ·  view source on GitHub ↗

Sets the row_count of RecordBatchOptions and returns self

(mut self, row_count: Option<usize>)

Source from the content-addressed store, hash-verified

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;

Callers 15

parseFunction · 0.80
hydrate_dictionariesFunction · 0.80
normalize_batchFunction · 0.80
nextMethod · 0.80
_test_round_trip_exportFunction · 0.80

Calls

no outgoing calls