Tracking issue for unstable option: reorder_impl_items
Should reorganized elements maintain their original order?
Example:
pub trait MyTrait {
type c;
type b;
type a;
}
So after formatting instead of this:
impl MyStruct for MyTrait {
type a = ();
type b = ();
type c = ();
...
}
we have this:
impl MyStruct for MyTrait {
type c = ();
type b = ();
type a = ();
...
}
Most helpful comment
Should reorganized elements maintain their original order?
Example:
So after formatting instead of this:
we have this: