pub(crate) trait FloatToInt<T: Sized> {
// Required method
fn try_into_int(&self) -> Result<T, ConversionError>
where Self: Sized;
}
pub(crate) trait FloatToInt<T: Sized> {
// Required method
fn try_into_int(&self) -> Result<T, ConversionError>
where Self: Sized;
}