(&self)
| 34 | |
| 35 | impl Clone for ComputationMode { |
| 36 | fn clone(&self) -> Self { |
| 37 | match self { |
| 38 | Self::Chunked(arg0) => Self::Chunked(*arg0), |
| 39 | Self::Whole => Self::Whole, |
| 40 | } |
| 41 | } |
| 42 | } |
| 43 | |
| 44 | // TODO: implement more flexibility here! |
no outgoing calls
no test coverage detected