MCPcopy Create free account
hub / github.com/apache/datafusion / fmt

Method fmt

datafusion/expr/src/logical_plan/dml.rs:48–57  ·  view source on GitHub ↗
(&self, f: &mut Formatter<'_>)

Source from the content-addressed store, hash-verified

46
47impl Debug for CopyTo {
48 fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result {
49 f.debug_struct("CopyTo")
50 .field("input", &self.input)
51 .field("output_url", &self.output_url)
52 .field("partition_by", &self.partition_by)
53 .field("file_type", &"...")
54 .field("options", &self.options)
55 .field("output_schema", &self.output_schema)
56 .finish_non_exhaustive()
57 }
58}
59
60// Implement PartialEq manually

Callers

nothing calls this directly

Calls 3

fieldMethod · 0.45
finishMethod · 0.45
schemaMethod · 0.45

Tested by

no test coverage detected