[][src]Struct lsp_types::CodeActionCapability

pub struct CodeActionCapability {
    pub dynamic_registration: Option<bool>,
    pub code_action_literal_support: Option<CodeActionLiteralSupport>,
    pub is_preferred_support: Option<bool>,
}

Fields

dynamic_registration: Option<bool>

This capability supports dynamic registration.

code_action_literal_support: Option<CodeActionLiteralSupport>

The client support code action literals as a valid response of the textDocument/codeAction request.

is_preferred_support: Option<bool>

Whether code action supports the isPreferred property.

Trait Implementations

impl Clone for CodeActionCapability[src]

impl Debug for CodeActionCapability[src]

impl Default for CodeActionCapability[src]

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

impl Eq for CodeActionCapability[src]

impl PartialEq<CodeActionCapability> for CodeActionCapability[src]

impl Serialize for CodeActionCapability[src]

impl StructuralEq for CodeActionCapability[src]

impl StructuralPartialEq for CodeActionCapability[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T> From<T> for T[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.