(&self)
| 459 | } |
| 460 | |
| 461 | fn get_old_task(&self) -> Vec<ffi::PropValuePair> { |
| 462 | match &self.0 { |
| 463 | tc::Operation::Delete { old_task, .. } => old_task |
| 464 | .iter() |
| 465 | .map(|(p, v)| ffi::PropValuePair { |
| 466 | prop: p.into(), |
| 467 | value: v.into(), |
| 468 | }) |
| 469 | .collect(), |
| 470 | _ => panic!("operation is not a delete"), |
| 471 | } |
| 472 | } |
| 473 | } |
| 474 | |
| 475 | fn new_operations() -> Vec<Operation> { |
nothing calls this directly
no outgoing calls
no test coverage detected