i64_constant_MIN
i64_constant_MIN (i64 MIN 상수)
i64 타입으로 표현할 수 있는 가장 작은 값이에요.
출처: Rust 공식 문서
본문
이 정수 타입으로 표현할 수 있는 가장 작은 값이에요. 값은 -9_223_372_036_854_775_808 이에요. 더 이상 사용되지 않을 예정이므로 i64::MIN 를 대신 사용하세요.
pub const MIN: i64 = i64::MIN; // -9_223_372_036_854_775_808i64 👎 Deprecating in a future version: replaced by the MIN associated constant on this type