Replies: 1 comment
-
Usually the right way to do this would be only to have the outer-most be a |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello.
After spending a week trying to adapt the
Signal
to a real project, I gave up and rewrote everything inRcSignal
style (as in your "todomvc" example).Is it possible to write something in complexity like todomvc with
Signal
s? First of all, the problem is working with values of typeSignal<Vec<Signal<SomeStruct>>>
(or maybeSignal<Vec<&'a Signal<SomeStruct>>>
). They throw lifetime and borrow errors, no matter how manyclone()
oras_ref()
are added. Especially duringset
ting new values or Iteration inside view!{}Sorry, I'm not a expert on lifetimes in Rust. I would just be happy to have an example of todomvc-like example written on brand new, shiny
Signals
Beta Was this translation helpful? Give feedback.
All reactions