pub const MIN: u32 = u32::MIN; // 0u32
The smallest value that can be represented by this integer type. Use u32::MIN
instead.
// 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