pub trait TeXInt:
Numeric<Self>
+ From<i32>
+ TryFrom<i64>
+ Into<i64>
+ TryInto<i32>
+ Debug
+ Display
+ FromStr {
const MIN: Self;
const MAX: Self;
}Expand description
A TeX integer. By default i32.
Required Associated Constants§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".