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

Method fmt

arrow-array/src/builder/struct_builder.rs:109–115  ·  view source on GitHub ↗
(&self, f: &mut std::fmt::Formatter<'_>)

Source from the content-addressed store, hash-verified

107
108impl std::fmt::Debug for StructBuilder {
109 fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
110 f.debug_struct("StructBuilder")
111 .field("fields", &self.fields)
112 .field("bitmap_builder", &self.null_buffer_builder)
113 .field("len", &self.len())
114 .finish()
115 }
116}
117
118impl ArrayBuilder for StructBuilder {

Callers

nothing calls this directly

Calls 3

finishMethod · 0.45
fieldMethod · 0.45
lenMethod · 0.45

Tested by

no test coverage detected