Struct lsp_types::SemanticTokensWorkspaceClientCapabilities[][src]

pub struct SemanticTokensWorkspaceClientCapabilities {
    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 semantic tokens 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 SemanticTokensWorkspaceClientCapabilities[src]

impl Debug for SemanticTokensWorkspaceClientCapabilities[src]

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

impl Eq for SemanticTokensWorkspaceClientCapabilities[src]

impl PartialEq<SemanticTokensWorkspaceClientCapabilities> for SemanticTokensWorkspaceClientCapabilities[src]

impl Serialize for SemanticTokensWorkspaceClientCapabilities[src]

impl StructuralEq for SemanticTokensWorkspaceClientCapabilities[src]

impl StructuralPartialEq for SemanticTokensWorkspaceClientCapabilities[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.