pub trait IntoIncr<T>: NotObserver {
// Required method
fn into_incr(self) -> Incr<T>;
}Expand description
A helper trait for accepting either Incr or Var. We already do Deref coercion from Var to Incr (i.e. its watch node), so may as well accept Var anywhere we accept Incr.