pub trait CacheKey<W> { // Required method fn cache_key(&self, widget: &W) -> Option<u64>; }
Cache key strategy for a widget.
Return a cache key for the widget, or None to disable key-based invalidation.
None