(&self, f: &mut fmt::Formatter<'_>)
| 55 | |
| 56 | impl fmt::Display for Entity { |
| 57 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { |
| 58 | match *self { |
| 59 | Entity::Block(x) => x.fmt(f), |
| 60 | Entity::Value(x) => x.fmt(f), |
| 61 | Entity::ValueGroup(x) => x.fmt(f), |
| 62 | Entity::Inst(x) => x.fmt(f), |
| 63 | } |
| 64 | } |
| 65 | } |
| 66 | |
| 67 | /// Point at which a `Value` is defined. |
nothing calls this directly
no outgoing calls
no test coverage detected