pub trait HitGraphSink {
// Required method
fn push_hit(
&mut self,
node_id: NodeId,
geometry: HitGeometry,
shape: Option<RoundedCornerShape>,
click_actions: &[Rc<dyn Fn(Point)>],
pointer_inputs: &[Rc<dyn Fn(PointerEvent)>],
);
}