Pretty-print this [MirRelationExpr] to a string.
(&self)
| 1489 | |
| 1490 | /// Pretty-print this [MirRelationExpr] to a string. |
| 1491 | pub fn pretty(&self) -> String { |
| 1492 | let config = ExplainConfig::default(); |
| 1493 | self.debug_explain(&config, None) |
| 1494 | } |
| 1495 | |
| 1496 | /// Pretty-print this [MirRelationExpr] to a string using a custom |
| 1497 | /// [ExplainConfig] and an optionally provided [ExprHumanizer]. |
no test coverage detected