Struct lsp_types::CodeActionContext
source · pub struct CodeActionContext {
pub diagnostics: Vec<Diagnostic>,
pub only: Option<Vec<CodeActionKind>>,
pub trigger_kind: Option<CodeActionTriggerKind>,
}
Expand description
Contains additional diagnostic information about the context in which a code action is run.
Fields§
§diagnostics: Vec<Diagnostic>
An array of diagnostics.
only: Option<Vec<CodeActionKind>>
Requested kind of actions to return.
Actions not of this kind are filtered out by the client before being shown. So servers can omit computing them.
trigger_kind: Option<CodeActionTriggerKind>
The reason why code actions were requested.
@since 3.17.0
Trait Implementations§
source§impl Clone for CodeActionContext
impl Clone for CodeActionContext
source§fn clone(&self) -> CodeActionContext
fn clone(&self) -> CodeActionContext
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 CodeActionContext
impl Debug for CodeActionContext
source§impl Default for CodeActionContext
impl Default for CodeActionContext
source§fn default() -> CodeActionContext
fn default() -> CodeActionContext
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for CodeActionContext
impl<'de> Deserialize<'de> for CodeActionContext
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 PartialEq for CodeActionContext
impl PartialEq for CodeActionContext
source§impl Serialize for CodeActionContext
impl Serialize for CodeActionContext
impl Eq for CodeActionContext
impl StructuralPartialEq for CodeActionContext
Auto Trait Implementations§
impl Freeze for CodeActionContext
impl RefUnwindSafe for CodeActionContext
impl Send for CodeActionContext
impl Sync for CodeActionContext
impl Unpin for CodeActionContext
impl UnwindSafe for CodeActionContext
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<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.