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

Method diff

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

Source from the content-addressed store, hash-verified

67
68impl 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
79impl Patch for WindowSize {

Callers

nothing calls this directly

Calls 1

push_paramMethod · 0.80

Tested by

no test coverage detected