You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, user functions return an Effect which means in the case of failure they can only panic. If instead, it returned a Result<Effect, SomeErrorType> there would be a more graceful failure scenario.
Currently, user functions return an
Effectwhich means in the case of failure they can only panic. If instead, it returned aResult<Effect, SomeErrorType>there would be a more graceful failure scenario.