rust-refactor
rust-refactor copied to clipboard
Rust refactoring project
Results
34
rust-refactor issues
Sort by
recently updated
recently updated
newest added
This could be - change order of arguments - add argument - remove unused argument
e.g. when implementing a trait that is not in the prelude nor in the use list, you could right-click on the trait name and select refactor->add use
Most useful for structs, the tuple case is not so important. E.g., ``` enum Foo { Foo, Bar { a: A, b: B }, Baz(A, B) } ``` to ```...