| 279 | /// Represents a value that we only know the minimum and maximum of. |
| 280 | #[derive(Debug, Copy, Clone, PartialEq, Eq)] |
| 281 | pub struct MinMax { |
| 282 | pub min: i64, |
| 283 | pub max: i64, |
| 284 | } |
| 285 | |
| 286 | impl MinMax { |
| 287 | /// Returns the number of bytes required to store the range. |
nothing calls this directly
no outgoing calls
no test coverage detected