Struct lsp2::CodeActionContext
pub struct CodeActionContext {
pub diagnostics: Vec<Diagnostic, Global>,
pub only: Option<Vec<CodeActionKind, Global>>,
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, Global>
An array of diagnostics.
only: Option<Vec<CodeActionKind, Global>>
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§
§impl Clone for CodeActionContext
impl Clone for CodeActionContext
§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 more§impl Debug for CodeActionContext
impl Debug for CodeActionContext
§impl Default for CodeActionContext
impl Default for CodeActionContext
§fn default() -> CodeActionContext
fn default() -> CodeActionContext
Returns the “default value” for a type. Read more
§impl<'de> Deserialize<'de> for CodeActionContext
impl<'de> Deserialize<'de> for CodeActionContext
§fn deserialize<__D>(
__deserializer: __D
) -> Result<CodeActionContext, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>( __deserializer: __D ) -> Result<CodeActionContext, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
§impl PartialEq<CodeActionContext> for CodeActionContext
impl PartialEq<CodeActionContext> for CodeActionContext
§fn eq(&self, other: &CodeActionContext) -> bool
fn eq(&self, other: &CodeActionContext) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.§impl Serialize for CodeActionContext
impl Serialize for CodeActionContext
§fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>( &self, __serializer: __S ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where __S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Eq for CodeActionContext
impl StructuralEq for CodeActionContext
impl StructuralPartialEq for CodeActionContext
Auto Trait Implementations§
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
§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,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§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,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.