1 2 3 4 5 6 7
pub trait Range<T: Sized + PartialEq + PartialOrd> { const MIN: T; const MAX: T; fn is_in_range(&self) -> bool; }