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
Some of the errors returned by the library implement the std::error::Error trait and some are just Strings. I propose all errors returned by the library implement std::error::Error to simplify error handling for consumers.
In the cases where we only have a String to return, this can be wrapped in an enum that implements Error.