W3cubDocs

/Rust

Constant std::i64::MIN

pub const MIN: i64 = i64::MIN; // -9_223_372_036_854_775_808i64

The smallest value that can be represented by this integer type. Use i64::MIN instead.

Examples

// deprecated way
let min = std::i64::MIN;

// intended way
let min = i64::MIN;

© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/i64/constant.MIN.html