Wrap the given child `expr` into a [`HumanizedExpr`] using the same `cols` and `mode` as `self`.
(&self, expr: &'a U)
| 1082 | /// Wrap the given child `expr` into a [`HumanizedExpr`] using the same |
| 1083 | /// `cols` and `mode` as `self`. |
| 1084 | pub fn child<U>(&self, expr: &'a U) -> HumanizedExpr<'a, U, M> { |
| 1085 | HumanizedExpr { |
| 1086 | expr, |
| 1087 | cols: self.cols, |
| 1088 | mode: self.mode.clone(), |
| 1089 | } |
| 1090 | } |
| 1091 | } |
| 1092 | |
| 1093 | /// A trait that abstracts the various ways in which we can humanize |