[][src]Struct lsp_types::CodeActionContext

pub struct CodeActionContext {
    pub diagnostics: Vec<Diagnostic>,
    pub only: Option<Vec<String>>,
}

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

impl Eq for CodeActionContext[src]

impl PartialEq<CodeActionContext> for CodeActionContext[src]

impl Debug for CodeActionContext[src]

impl Serialize for CodeActionContext[src]

impl<'de> Deserialize<'de> for CodeActionContext[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]