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
See rust-lang/rust#20749
Since Get, Set and Action are auto implemented, then we could use tuples for the Self type and associated types.
Get
Set
Action
Self
The text was updated successfully, but these errors were encountered:
Got problems with either lifetimes or calling static method on trait.
Sorry, something went wrong.
Can add a phantom enum struct pub struct Me<T>; and pass it in as Me<Self> as first parameter.
pub struct Me<T>;
Me<Self>
Redesign for new trait rules
9c77ae0
Closes PistonDevelopers#3
bvssvni
Successfully merging a pull request may close this issue.
See rust-lang/rust#20749
Since
Get
,Set
andAction
are auto implemented, then we could use tuples for theSelf
type and associated types.The text was updated successfully, but these errors were encountered: