Struct lsp_types::CodeActionOptions
source · [−]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
sourceimpl Clone for CodeActionOptions
impl Clone for CodeActionOptions
sourcefn clone(&self) -> CodeActionOptions
fn clone(&self) -> CodeActionOptions
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for CodeActionOptions
impl Debug for CodeActionOptions
sourceimpl<'de> Deserialize<'de> for CodeActionOptions
impl<'de> Deserialize<'de> for CodeActionOptions
sourcefn 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
sourceimpl From<CodeActionOptions> for CodeActionProviderCapability
impl From<CodeActionOptions> for CodeActionProviderCapability
sourcefn from(from: CodeActionOptions) -> Self
fn from(from: CodeActionOptions) -> Self
Converts to this type from the input type.
sourceimpl PartialEq<CodeActionOptions> for CodeActionOptions
impl PartialEq<CodeActionOptions> for CodeActionOptions
sourcefn eq(&self, other: &CodeActionOptions) -> bool
fn eq(&self, other: &CodeActionOptions) -> bool
sourceimpl Serialize for CodeActionOptions
impl Serialize for CodeActionOptions
impl Eq for CodeActionOptions
impl StructuralEq for CodeActionOptions
impl StructuralPartialEq for CodeActionOptions
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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more