Converts from a bit-level representation of the type back to a `Type`.
(bits: u16)
| 414 | /// Converts from a bit-level representation of the type back to a |
| 415 | /// `Type`. |
| 416 | pub(crate) fn from_repr(bits: u16) -> Type { |
| 417 | Type(bits) |
| 418 | } |
| 419 | } |
| 420 | |
| 421 | impl Display for Type { |