pub trait Add<T> {
    fn add(&self, value: T) -> Self;
}

Required methods

Return self.x + value and self.y + value If value is primitive then both self.x and self.y will be added using the same value otherwise self.x will only added by min.x and max.x and the same for y

Implementors