(self)
| 211 | /// Converts this value to the target type, panics if value cannot be represented by the target type |
| 212 | #[inline] |
| 213 | fn convert<To: Real>(self) -> Self::Out<To> { |
| 214 | self.try_convert().expect("failed to convert") |
| 215 | } |
| 216 | } |
| 217 | |
| 218 | impl<From: Real> RealConvert for &From { |
nothing calls this directly
no test coverage detected