We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
I noticed that UpdateEl is not implemented on iterators.
UpdateEl
Would be great to add an implementation. That saves me a annoying collect.
div![ // Want: items.iter().map(render_item) // Required now: items.iter().map(render_item).collect::<Vec<_>>() ]