(&self, baseline: &Self, path: PathBuilder, event_queue: &mut E)
| 594 | |
| 595 | impl Diff for PlayFrom { |
| 596 | fn diff<E: EventQueue>(&self, baseline: &Self, path: PathBuilder, event_queue: &mut E) { |
| 597 | if self != baseline { |
| 598 | match self { |
| 599 | Self::Resume => event_queue.push_param(ParamData::None, path), |
| 600 | Self::Seconds(seconds) => event_queue.push_param(*seconds, path), |
| 601 | Self::Frames(frames) => event_queue.push_param(*frames, path), |
| 602 | } |
| 603 | } |
| 604 | } |
| 605 | } |
| 606 | |
| 607 | impl Patch for PlayFrom { |
nothing calls this directly
no test coverage detected