(&self, f: &mut fmt::Formatter<'_>)
| 35 | |
| 36 | impl<T: EntityRef + fmt::Display> fmt::Display for EntityRange<T> { |
| 37 | fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { |
| 38 | write!(f, "{}..{}", self.from, self.to) |
| 39 | } |
| 40 | } |
| 41 | |
| 42 | impl<T: EntityRef> EntityRange<T> { |
nothing calls this directly
no outgoing calls
no test coverage detected