Rustfmt currently produces this: ```rust impl ImplementationXxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx for TypeXxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx { fn foo() {} } ``` I think it looks better, and more consistent with other code, like this: ```rust impl ImplementationXxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx for TypeXxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx { fn foo() {} } ```