Struct lsp_types::CodeActionParams [−][src]
pub struct CodeActionParams {
pub text_document: TextDocumentIdentifier,
pub range: Range,
pub context: CodeActionContext,
pub work_done_progress_params: WorkDoneProgressParams,
pub partial_result_params: PartialResultParams,
}
Expand description
Params for the CodeActionRequest
Fields
text_document: TextDocumentIdentifier
The document in which the command was invoked.
range: Range
The range for which the command was invoked.
context: CodeActionContext
Context carrying additional information.
work_done_progress_params: WorkDoneProgressParams
partial_result_params: PartialResultParams
Trait Implementations
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 CodeActionParams
impl Send for CodeActionParams
impl Sync for CodeActionParams
impl Unpin for CodeActionParams
impl UnwindSafe for CodeActionParams
Blanket Implementations
Mutably borrows from an owned value. Read more