Struct lsp_types::CodeLensWorkspaceClientCapabilities[][src]

pub struct CodeLensWorkspaceClientCapabilities {
    pub refresh_support: Option<bool>,
}

Fields

refresh_support: Option<bool>

Whether the client implementation supports a refresh request sent from the server to the client.

Note that this event is global and will force the client to refresh all code lenses currently shown. It should be used with absolute care and is useful for situation where a server for example detect a project wide change that requires such a calculation.

Trait Implementations

impl Clone for CodeLensWorkspaceClientCapabilities[src]

impl Debug for CodeLensWorkspaceClientCapabilities[src]

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

impl Eq for CodeLensWorkspaceClientCapabilities[src]

impl PartialEq<CodeLensWorkspaceClientCapabilities> for CodeLensWorkspaceClientCapabilities[src]

impl Serialize for CodeLensWorkspaceClientCapabilities[src]

impl StructuralEq for CodeLensWorkspaceClientCapabilities[src]

impl StructuralPartialEq for CodeLensWorkspaceClientCapabilities[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: for<'de> 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.