(&self, f: &mut fmt::Formatter<'_>, cols: Option<&Vec<String>>)
| 1053 | |
| 1054 | impl MirScalarExpr { |
| 1055 | pub fn format(&self, f: &mut fmt::Formatter<'_>, cols: Option<&Vec<String>>) -> fmt::Result { |
| 1056 | let mode = HumanizedExplain::default(); |
| 1057 | fmt::Display::fmt(&mode.expr(self, cols), f) |
| 1058 | } |
| 1059 | } |
| 1060 | |
| 1061 | impl fmt::Display for MirScalarExpr { |
no test coverage detected