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

Method fmt

arrow-array/src/array/fixed_size_binary_array.rs:722–728  ·  view source on GitHub ↗
(&self, f: &mut std::fmt::Formatter)

Source from the content-addressed store, hash-verified

720
721impl std::fmt::Debug for FixedSizeBinaryArray {
722 fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
723 write!(f, "FixedSizeBinaryArray<{}>\n[\n", self.value_length())?;
724 print_long_array(self, f, |array, index, f| {
725 std::fmt::Debug::fmt(&array.value(index), f)
726 })?;
727 write!(f, "]")
728 }
729}
730
731/// SAFETY: Correctly implements the contract of Arrow Arrays

Callers

nothing calls this directly

Calls 2

print_long_arrayFunction · 0.85
valueMethod · 0.45

Tested by

no test coverage detected