We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
At the moment Doublets trait use Links trait. This is due to the fact that for a long time data::Links Error = Box<dyn Error>
Doublets
Links
data::Links Error
Box<dyn Error>
This is now fixed at linksplatform/core-rs@a2cadfa.
However, data::Error still loses information. It may be worth impl Links for Doublets, instead of Doublets for Links
data::Error
Links for Doublets
Doublets for Links
The text was updated successfully, but these errors were encountered:
It may be worth impl Links for Doublets, instead of Doublets for Links
For example:
//! before trait Foo { fn foo(&self); } trait Bar: Foo { fn bar(&self) { self.foo(); } } //! after trait Foo { fn foo(&self); } trait Bar { fn bar(&self); } impl Foo for Bar { fn foo(&self) { self.bar() } }
Sorry, something went wrong.
No branches or pull requests
At the moment
Doublets
trait useLinks
trait. This is due to the fact that for a long timedata::Links Error
=Box<dyn Error>
This is now fixed at linksplatform/core-rs@a2cadfa.
However,
data::Error
still loses information. It may be worth implLinks for Doublets
, instead ofDoublets for Links
The text was updated successfully, but these errors were encountered: