We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
The rust grammar still allows for this old-style struct implementing a trait:
trait T { ... } struct S: T { ... }
Using this form is no longer safe though, as I experienced in #3276. The new min/max style works though:
trait T { } struct S { ... } impl S: T { ... }