Integers.
trait Int { /* Required methods */ fn cast_i64(&self) -> i64 fn negative(&self) -> bool }
&self
Casts the value to an i64 and possibly discards significant bits.
i64
Returns whether the value is negative.