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
Per rust-lang/rust#17842, this will probably turn all lifetime identifiers into lifetime paths preceded by '. As a concrete example:
'
struct Bar<'r>(...); trait Foo { lifetime 'a; lifetime 'b: 'Self::a = 'Self::a; fn foo(&'Self::a self) -> Bar<'Self::b>; } impl<'a> Foo for &'a i32 { lifetime 'a = 'a; lifetime 'b = 'static; fn foo(&'a self) -> Bar<'static> { ... } } fn baz<'b, F, G>(f: &F, g: &G) where F: Foo, G: Foo<'a = 'F::a>, 'F::a: 'b, { ... }
CC @aturon.
The text was updated successfully, but these errors were encountered:
I take it nothing happened here yet? I presume the issues are similar to -> impl Trait in traits?
-> impl Trait
Sorry, something went wrong.
No branches or pull requests
Per rust-lang/rust#17842, this will probably turn all lifetime identifiers into lifetime paths preceded by
'
. As a concrete example:CC @aturon.
The text was updated successfully, but these errors were encountered: