A4-Tacks cf299690a9
Fix generate_trait_from_impl whitespace after vis
Input:

```rust
struct Foo;

impl F$0oo {
    pub fn a_func() -> Option<()> {
        Some(())
    }
}
```

Old:

```rust
struct Foo;

trait NewTrait {
     fn a_func() -> Option<()>;
}

impl NewTrait for Foo {
     fn a_func() -> Option<()> {
        Some(())
    }
}
```

This PR fixed:

```rust
struct Foo;

trait NewTrait {
    fn a_func() -> Option<()>;
}

impl NewTrait for Foo {
    fn a_func() -> Option<()> {
        Some(())
    }
}
```
2025-07-24 15:06:56 +08:00
..
2025-07-03 10:05:16 +02:00
2025-07-20 11:56:45 +03:00
2025-07-20 11:56:45 +03:00
2025-06-23 00:50:22 +03:00
2025-07-20 11:56:45 +03:00
2025-06-23 00:50:22 +03:00
2025-07-22 16:24:42 +03:00
2025-06-23 00:50:22 +03:00
2025-06-23 00:50:22 +03:00
2025-06-23 00:50:22 +03:00
2025-06-23 00:50:22 +03:00
2025-07-09 21:43:20 +03:00
2025-06-23 00:50:22 +03:00
2025-06-23 00:50:22 +03:00
2025-06-23 00:50:22 +03:00
2025-07-20 11:56:45 +03:00
2025-07-03 10:05:16 +02:00
2025-06-23 00:50:22 +03:00