use core::fmt;
pub struct TryFromFloatError(pub(crate) ());
impl fmt::Display for TryFromFloatError {
#[inline]
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let msg = "out of range integral type conversion attempted";
fmt::Display::fmt(msg, f)
}
}