pub trait DependencyElement: 'static + PartialEq + Clone { }
Expand description

A dependency is a trait that can be used to determine if a effect or selector should be re-run.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T> DependencyElement for T
where T: 'static + PartialEq + Clone,