1pub trait Infinity { 2 const INFINITY: Self; 3} 4 5impl Infinity for usize { 6 const INFINITY: usize = std::usize::MAX; 7}