pub trait ToInt32 { // Required method fn to_int_32(&self) -> i32; }
Converts a 64-bit floating point number to an i32 according to the ToInt32 algorithm.
i32
ToInt32
This is copied from Boa
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".