diff options
author | Domantas Jadenkus <[email protected]> | 2021-02-13 13:34:40 +0000 |
---|---|---|
committer | Domantas Jadenkus <[email protected]> | 2021-02-13 13:34:40 +0000 |
commit | b07f530e3ae025c57b2b64e8ebb2852e60bced7b (patch) | |
tree | d46451d2029fe7842a654feec4c1bbf8246d1829 | |
parent | 375c13cd44a4aef7f7c99269bd621017ee9d7aeb (diff) |
cargo fmt
-rw-r--r-- | crates/assists/src/handlers/generate_from_impl_for_enum.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/crates/assists/src/handlers/generate_from_impl_for_enum.rs b/crates/assists/src/handlers/generate_from_impl_for_enum.rs index c28eeff51..f6febd3aa 100644 --- a/crates/assists/src/handlers/generate_from_impl_for_enum.rs +++ b/crates/assists/src/handlers/generate_from_impl_for_enum.rs | |||
@@ -3,7 +3,10 @@ use ide_db::helpers::FamousDefs; | |||
3 | use ide_db::RootDatabase; | 3 | use ide_db::RootDatabase; |
4 | use itertools::Itertools; | 4 | use itertools::Itertools; |
5 | use stdx::format_to; | 5 | use stdx::format_to; |
6 | use syntax::{SmolStr, ast::{self, AstNode, NameOwner}}; | 6 | use syntax::{ |
7 | ast::{self, AstNode, NameOwner}, | ||
8 | SmolStr, | ||
9 | }; | ||
7 | use test_utils::mark; | 10 | use test_utils::mark; |
8 | 11 | ||
9 | use crate::{AssistContext, AssistId, AssistKind, Assists}; | 12 | use crate::{AssistContext, AssistId, AssistKind, Assists}; |