Struct lsp_types::SemanticTokensDelta[][src]

pub struct SemanticTokensDelta {
    pub result_id: Option<String>,
    pub edits: Vec<SemanticTokensEdit>,
}

@since 3.16.0

Fields

result_id: Option<String>edits: Vec<SemanticTokensEdit>

For a detailed description how these edits are structured pls see https://github.com/microsoft/vscode-extension-samples/blob/5ae1f7787122812dcc84e37427ca90af5ee09f14/semantic-tokens-sample/vscode.proposed.d.ts#L131

Trait Implementations

impl Clone for SemanticTokensDelta[src]

impl Debug for SemanticTokensDelta[src]

impl Default for SemanticTokensDelta[src]

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

impl Eq for SemanticTokensDelta[src]

impl From<SemanticTokensDelta> for SemanticTokensFullDeltaResult[src]

impl PartialEq<SemanticTokensDelta> for SemanticTokensDelta[src]

impl Serialize for SemanticTokensDelta[src]

impl StructuralEq for SemanticTokensDelta[src]

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