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 we just use Strings for all our Result errors. This should be changed into some kind of an enum so we actually know what the crap is happening.
The text was updated successfully, but these errors were encountered:
This should probably be done now, instead of after Constellation support is finished. Then, constellation support will just be done with the correct type of result error types.
I'm also thinking we should convert HandlerResult (renamed in the constellation branch) to a more generic system - maybe remove the Nothing variant, and use Option<HandlerResult>, and just have the variants of Error and Message. Maybe we could completely replace that with a result, but that might end up making it more complicated, instead of simpler.
Currently we just use
String
s for all ourResult
errors. This should be changed into some kind of an enum so we actually know what the crap is happening.The text was updated successfully, but these errors were encountered: