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§
source§impl Clone for CodeActionOptions
impl Clone for CodeActionOptions
source§fn clone(&self) -> CodeActionOptions
fn clone(&self) -> CodeActionOptions
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for CodeActionOptions
impl Debug for CodeActionOptions
source§impl<'de> Deserialize<'de> for CodeActionOptions
impl<'de> Deserialize<'de> for CodeActionOptions
source§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
source§impl From<CodeActionOptions> for CodeActionProviderCapability
impl From<CodeActionOptions> for CodeActionProviderCapability
source§fn from(from: CodeActionOptions) -> Self
fn from(from: CodeActionOptions) -> Self
Converts to this type from the input type.
source§impl PartialEq for CodeActionOptions
impl PartialEq for CodeActionOptions
source§fn eq(&self, other: &CodeActionOptions) -> bool
fn eq(&self, other: &CodeActionOptions) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl 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§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.