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
Move to thiserror to simplify a few things around errors in the long run. Also deals with the deprecation of description in favour of fmt::Display and such.
The text was updated successfully, but these errors were encountered:
After looking into this as part of #139 there is quite a bit of pain in there. A lot of information is dropped in early stages due to the assumption of static strings carrying sufficent information, which is not true. The error chain should reach down to the level of FFI where we get an error code and that should be bubbled up all the way to ease checking against the API, every layer on-top is really just a nice helper and avoiding extrac churn.
So this is rather urgent, especially to improve the quality of issues being reported in the mid-term.
Move to
thiserror
to simplify a few things around errors in the long run. Also deals with the deprecation ofdescription
in favour offmt::Display
and such.The text was updated successfully, but these errors were encountered: