Struct lsp_types::CodeActionOptions [−][src]
pub struct CodeActionOptions {
pub code_action_kinds: Option<Vec<CodeActionKind>>,
pub work_done_progress_options: WorkDoneProgressOptions,
pub resolve_provider: Option<bool>,
}
Fields
code_action_kinds: Option<Vec<CodeActionKind>>
CodeActionKinds that this server may return.
The list of kinds may be generic, such as CodeActionKind.Refactor
, or the server
may list out every specific kind they provide.
work_done_progress_options: WorkDoneProgressOptions
resolve_provider: Option<bool>
The server provides support to resolve additional information for a code action.
since 3.16.0
Trait Implementations
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Performs the conversion.
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for CodeActionOptions
impl Send for CodeActionOptions
impl Sync for CodeActionOptions
impl Unpin for CodeActionOptions
impl UnwindSafe for CodeActionOptions
Blanket Implementations
Mutably borrows from an owned value. Read more