pub trait Floor: Copy { // Required method fn floor(self) -> Self; }
Defines the biggest integer equal or lower than the original value.
Rounds to the biggest integer equal or lower than the original value.
This behavior is preserved for negative values (unlike the basic cast).