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
It should be trivial. The only issue is that Error trait was added to core in 1.81. If that's too new of a Rust release to require, then you want to implement std::error::Error when use-std is enabled.
The text was updated successfully, but these errors were encountered:
Oh, also, fwiw, the host_client parts are currently only intended for std, so implementing either core::error::Error or just std::error::Error should be fine.
It should be trivial. The only issue is that
Error
trait was added tocore
in 1.81. If that's too new of a Rust release to require, then you want to implementstd::error::Error
whenuse-std
is enabled.The text was updated successfully, but these errors were encountered: