(&self)
| 2299 | |
| 2300 | impl Clone for ReductionMonoid { |
| 2301 | fn clone(&self) -> Self { |
| 2302 | use ReductionMonoid::*; |
| 2303 | match self { |
| 2304 | Min(row) => Min(row.clone()), |
| 2305 | Max(row) => Max(row.clone()), |
| 2306 | } |
| 2307 | } |
| 2308 | |
| 2309 | fn clone_from(&mut self, source: &Self) { |
| 2310 | use ReductionMonoid::*; |
no outgoing calls
no test coverage detected