(&self, f: &mut fmt::Formatter)
| 51 | |
| 52 | impl<'a> fmt::Display for FuncSpec<'a> { |
| 53 | fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { |
| 54 | match self { |
| 55 | FuncSpec::Func(n) => n.fmt(f), |
| 56 | FuncSpec::Op(o) => o.fmt(f), |
| 57 | } |
| 58 | } |
| 59 | } |
| 60 | |
| 61 | impl TypeCategory { |