You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 20, 2020. It is now read-only.
As mentioned at RustFest, it would be nice if impl with lots of methods would be more organized. One way to do this would be to (make it possible to) sort by usage of self, so:
As mentioned at RustFest, it would be nice if
impl
with lots of methods would be more organized. One way to do this would be to (make it possible to) sort by usage ofself
, so:self
-less methods (like constructors, class/static methods)&self
methods (like getters)&mut self
methods (like setters)self
methods (methods taking over ownership)I think this would be particularly useful if you kind of know what you want to do, but don't know the exact name for what you're looking for.
The text was updated successfully, but these errors were encountered: