On this page
Constant std::u32::MIN
pub const MIN: u32 = u32::MIN; // 0u32
👎Deprecating in a future Rust version: replaced by the
MIN
associated constant on this type
The smallest value that can be represented by this integer type. Use u32::MIN
instead.
Examples
// deprecated way
let min = std::u32::MIN;
// intended way
let min = u32::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/u32/constant.MIN.html