std::u128
pub const MAX: u128 = u128::MAX; // 0_xff_fff_fff_fff_fff_fff_fff_fff_fff_fff_fffu128
The largest value that can be represented by this integer type. Use u128::MAX instead.
u128::MAX
// deprecated way let max = std::u128::MAX; // intended way let max = u128::MAX;