Struct lsp_types::CodeActionClientCapabilities
source · [−]pub struct CodeActionClientCapabilities {
pub dynamic_registration: Option<bool>,
pub code_action_literal_support: Option<CodeActionLiteralSupport>,
pub is_preferred_support: Option<bool>,
pub disabled_support: Option<bool>,
pub data_support: Option<bool>,
pub resolve_support: Option<CodeActionCapabilityResolveSupport>,
pub honors_change_annotations: Option<bool>,
}Fields
dynamic_registration: Option<bool>This capability supports dynamic registration.
code_action_literal_support: Option<CodeActionLiteralSupport>The client support code action literals as a valid
response of the textDocument/codeAction request.
is_preferred_support: Option<bool>Whether code action supports the isPreferred property.
since 3.15.0
disabled_support: Option<bool>Whether code action supports the disabled property.
since 3.16.0
data_support: Option<bool>Whether code action supports the data property which is
preserved between a textDocument/codeAction and a
codeAction/resolve request.
since 3.16.0
resolve_support: Option<CodeActionCapabilityResolveSupport>Whether the client supports resolving additional code action
properties via a separate codeAction/resolve request.
since 3.16.0
honors_change_annotations: Option<bool>Whether the client honors the change annotations in
text edits and resource operations returned via the
CodeAction#edit property by for example presenting
the workspace edit in the user interface and asking
for confirmation.
@since 3.16.0
Trait Implementations
sourceimpl Clone for CodeActionClientCapabilities
impl Clone for CodeActionClientCapabilities
sourcefn clone(&self) -> CodeActionClientCapabilities
fn clone(&self) -> CodeActionClientCapabilities
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
source. Read more