pub struct CodeActionContext {
pub diagnostics: Vec<Diagnostic>,
pub only: Option<Vec<String>>,
}
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<String>>
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§
Source§impl Debug for CodeActionContext
impl Debug for CodeActionContext
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