Struct lsp_types::SemanticTokensClientCapabilitiesRequests[][src]

pub struct SemanticTokensClientCapabilitiesRequests {
    pub range: Option<bool>,
    pub full: Option<SemanticTokensFullOptions>,
}

Fields

range: Option<bool>

The client will send the textDocument/semanticTokens/range request if the server provides a corresponding handler.

full: Option<SemanticTokensFullOptions>

The client will send the textDocument/semanticTokens/full request if the server provides a corresponding handler.

Trait Implementations

impl Clone for SemanticTokensClientCapabilitiesRequests[src]

impl Debug for SemanticTokensClientCapabilitiesRequests[src]

impl Default for SemanticTokensClientCapabilitiesRequests[src]

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

impl Eq for SemanticTokensClientCapabilitiesRequests[src]

impl PartialEq<SemanticTokensClientCapabilitiesRequests> for SemanticTokensClientCapabilitiesRequests[src]

impl Serialize for SemanticTokensClientCapabilitiesRequests[src]

impl StructuralEq for SemanticTokensClientCapabilitiesRequests[src]

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