pub trait ClampMin { // Required method fn clamp_min<MIN>(self, min: MIN) -> Self where Self: Sized, MIN: Into<Self>; }