(&self, baseline: &Self, path: PathBuilder, event_queue: &mut E)
| 67 | |
| 68 | impl Diff for WindowSize { |
| 69 | fn diff<E: EventQueue>(&self, baseline: &Self, path: PathBuilder, event_queue: &mut E) { |
| 70 | if self != baseline { |
| 71 | match self { |
| 72 | WindowSize::Samples(samples) => event_queue.push_param(*samples, path), |
| 73 | WindowSize::Seconds(seconds) => event_queue.push_param(*seconds, path), |
| 74 | } |
| 75 | } |
| 76 | } |
| 77 | } |
| 78 | |
| 79 | impl Patch for WindowSize { |
nothing calls this directly
no test coverage detected