Skip to content

Use Fn instead of FnOnce in Action

marcheing requested to merge refactor/remove-fnbox-feature into master

This removes the need for the nightly feature of FnBox.

Now the actions can be called more than once, but we must remember that it cannot move variables from the outside scope to the inside of the closure used in the Effect of the Action (We'd have to move the value more than once, which is not possible).

Merge request reports