i8_constant_MIN

i8_constant_MIN (i8 MIN 상수)

i8 타입으로 표현할 수 있는 가장 작은 값이에요.

출처: Rust 공식 문서

본문

이 정수 타입으로 표현할 수 있는 가장 작은 값이에요. 값은 -128 이에요. 더 이상 사용되지 않을 예정이므로 i8::MIN 를 대신 사용하세요.

pub const MIN: i8 = i8::MIN; // -128i8 👎 Deprecating in a future version: replaced by the MIN associated constant on this type

더 알아보기 (Learn more)

Rust 공식 문서