Struct lsp_types::CodeActionContext [−][src]
pub struct CodeActionContext {
pub diagnostics: Vec<Diagnostic>,
pub only: Option<Vec<CodeActionKind>>,
}
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.
Trait Implementations
Returns the “default value” for a type. Read more
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
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
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
Mutably borrows from an owned value. Read more