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
the ? operator has nothing to do with the std::error::Error. I'm guessing you are trying to use error-chain with this library. As far as i know error-chain is being deprecated so it would be nice to migrate to failure.
If you want to obtain a std::error::Error you can call compat() on any error you obtain from this library (one of the benefits of the failure crate is this compatibility with other error handling crates).
... so it isn't usable with the
?
operator.The text was updated successfully, but these errors were encountered: