1 2 3 4 5
#[derive(Debug, Clone, Copy, PartialEq)] pub enum Range<T = f32> { Auto, Manual { min: T, max: T }, }