macro_rules! impl_arc_update {
($ty:ty) => { ... };
}Expand description
Implement the salsa::Update trait for Arc-wrapped types using pointer equality.
This reduces boilerplate for types that wrap a single Arc field and should only
invalidate when the pointer changes (not the contents).