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

Method fmt

datafusion/physical-expr/src/scalar_function.rs:61–68  ·  view source on GitHub ↗
(&self, f: &mut Formatter)

Source from the content-addressed store, hash-verified

59
60impl Debug for ScalarFunctionExpr {
61 fn fmt(&self, f: &mut Formatter) -> fmt::Result {
62 f.debug_struct("ScalarFunctionExpr")
63 .field("fun", &"<FUNC>")
64 .field("name", &self.name)
65 .field("args", &self.args)
66 .field("return_field", &self.return_field)
67 .finish()
68 }
69}
70
71impl ScalarFunctionExpr {

Callers

nothing calls this directly

Calls 2

finishMethod · 0.45
fieldMethod · 0.45

Tested by

no test coverage detected