(self, rhs: Self)
| 1537 | type Output = CardinalityEstimate; |
| 1538 | |
| 1539 | fn div(self, rhs: Self) -> Self::Output { |
| 1540 | use CardinalityEstimate::*; |
| 1541 | match (self, rhs) { |
| 1542 | (Estimate(lhs), Estimate(rhs)) => Estimate(lhs / rhs), |
| 1543 | _ => Unknown, |
| 1544 | } |
| 1545 | } |
| 1546 | } |
| 1547 | |
| 1548 | impl std::ops::Div<f64> for CardinalityEstimate { |
no outgoing calls
no test coverage detected