Trait dioxus_signals::Dep

source ·
pub trait Dep: '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.

Implementors§

source§

impl<T> Dep for Twhere T: 'static + PartialEq + Clone,