A union of `usize` | `u64` | `u32`
| 62 | |
| 63 | /// A union of `usize` | `u64` | `u32` |
| 64 | pub trait Integer: Display {} |
| 65 | impl<T: Integer> Integer for &T {} |
| 66 | impl Integer for usize {} |
| 67 | impl Integer for u64 {} |
nothing calls this directly
no outgoing calls
no test coverage detected