MCPcopy Create free account
hub / github.com/BillyDM/Firewheel / diff

Method diff

crates/firewheel-nodes/src/sampler.rs:596–604  ·  view source on GitHub ↗
(&self, baseline: &Self, path: PathBuilder, event_queue: &mut E)

Source from the content-addressed store, hash-verified

594
595impl 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
607impl Patch for PlayFrom {

Callers

nothing calls this directly

Calls 1

push_paramMethod · 0.80

Tested by

no test coverage detected