-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
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
Blocking rust features #7
Comments
Now that GATs have been stabilized, on nightly we can redesign the However, right now I'm experiencing this issue when using |
We have a problem with using GATs + We have optional methods that also use the GATs to define their return iterator type. |
The newest version of Rust now allows |
This issue tracks all rust features that are blocking further progress on this crate.
Equality constraints on associated constants
This will allow directeness to be an associated constant instead of the the current trait+structs API:
type_alias_impl_trait & generic_associated_types
This would allow the result types of most Graph methods to be
impl Iterator
, such that implementors can use whatever implementation they want.To achieve this currently we are using
Box<Iterator>
as return types which is inefficient.The text was updated successfully, but these errors were encountered: