Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Corelib
pub trait Bounded
T
const MIN: T;
use core::num::traits::Bounded; let min = Bounded::::MIN; assert!(min == 0);
const MAX: T;
use core::num::traits::Bounded; let max = Bounded::::MAX; assert!(max == 255);
Was this page helpful?