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

Method new

arrow-json/src/reader/struct_array.rs:36–41  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

34
35impl FieldTapePositions {
36 fn new() -> Self {
37 Self {
38 data: Vec::new(),
39 row_count: 0,
40 }
41 }
42
43 fn resize(&mut self, field_count: usize, row_count: usize) -> Result<(), ArrowError> {
44 let total_len = field_count.checked_mul(row_count).ok_or_else(|| {

Callers

nothing calls this directly

Calls 10

struct_fieldsFunction · 0.85
build_field_indexFunction · 0.85
strict_modeMethod · 0.80
ignore_type_conflictsMethod · 0.80
iterMethod · 0.45
is_nullableMethod · 0.45
make_decoderMethod · 0.45
data_typeMethod · 0.45
struct_modeMethod · 0.45
cloneMethod · 0.45

Tested by

no test coverage detected