Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/ide-assists/src/assist_config.rs')
| -rw-r--r-- | crates/ide-assists/src/assist_config.rs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/crates/ide-assists/src/assist_config.rs b/crates/ide-assists/src/assist_config.rs new file mode 100644 index 0000000000..d4d148c774 --- /dev/null +++ b/crates/ide-assists/src/assist_config.rs @@ -0,0 +1,16 @@ +//! Settings for tweaking assists. +//! +//! The fun thing here is `SnippetCap` -- this type can only be created in this +//! module, and we use to statically check that we only produce snippet +//! assists if we are allowed to. + +use ide_db::{imports::insert_use::InsertUseConfig, SnippetCap}; + +use crate::AssistKind; + +#[derive(Clone, Debug, PartialEq, Eq)] +pub struct AssistConfig { + pub snippet_cap: Option<SnippetCap>, + pub allowed: Option<Vec<AssistKind>>, + pub insert_use: InsertUseConfig, +} |